diff options
author | Tom Tromey <tromey@redhat.com> | 2014-06-06 13:19:53 -0600 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-06-16 10:29:17 -0600 |
commit | a30bf1f15c51b82a0134713bc44175cda296d3ae (patch) | |
tree | 9e741116883ba6d993d4329fe7269ac724f0b313 /gdb/target-delegates.c | |
parent | f4c51f600ed2fcf9f29bdaae71aa767b9b1bc4ac (diff) | |
download | gdb-a30bf1f15c51b82a0134713bc44175cda296d3ae.zip gdb-a30bf1f15c51b82a0134713bc44175cda296d3ae.tar.gz gdb-a30bf1f15c51b82a0134713bc44175cda296d3ae.tar.bz2 |
constify to_rcmd
This makes the "command" parameter of the to_rcmd target method const.
2014-06-16 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_rcmd>: Make "command" const.
* target.c (debug_to_rcmd, default_rcmd): Update.
* target-delegates.c: Rebuild.
* remote.c (remote_rcmd): Update.
* monitor.c (monitor_rcmd): Update.
Diffstat (limited to 'gdb/target-delegates.c')
-rw-r--r-- | gdb/target-delegates.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/target-delegates.c b/gdb/target-delegates.c index e6fbb44..522d52b 100644 --- a/gdb/target-delegates.c +++ b/gdb/target-delegates.c @@ -631,7 +631,7 @@ tdefault_stop (struct target_ops *self, ptid_t arg1) } static void -delegate_rcmd (struct target_ops *self, char *arg1, struct ui_file *arg2) +delegate_rcmd (struct target_ops *self, const char *arg1, struct ui_file *arg2) { self = self->beneath; self->to_rcmd (self, arg1, arg2); |