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/monitor.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/monitor.c')
-rw-r--r-- | gdb/monitor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/monitor.c b/gdb/monitor.c index 25742ac..4a57d5e 100644 --- a/gdb/monitor.c +++ b/gdb/monitor.c @@ -2282,7 +2282,7 @@ monitor_stop (struct target_ops *self, ptid_t ptid) ourseleves here cause of a nasty echo. */ static void -monitor_rcmd (struct target_ops *self, char *command, +monitor_rcmd (struct target_ops *self, const char *command, struct ui_file *outbuf) { char *p; |