diff options
author | Tom Tromey <tromey@redhat.com> | 2014-06-06 13:26:53 -0600 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-06-16 10:29:17 -0600 |
commit | fee354eeef0b5bb9b1b799e2ce313fc805b2af1a (patch) | |
tree | dff86f4f8779dc5d787c9dd24a802ef66b0ce46c /gdb/target-delegates.c | |
parent | a30bf1f15c51b82a0134713bc44175cda296d3ae (diff) | |
download | gdb-fee354eeef0b5bb9b1b799e2ce313fc805b2af1a.zip gdb-fee354eeef0b5bb9b1b799e2ce313fc805b2af1a.tar.gz gdb-fee354eeef0b5bb9b1b799e2ce313fc805b2af1a.tar.bz2 |
constify to_disconnect
This constifies an parameter of to_disconnect and updates
target_disconnect as well.
2014-06-16 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_disconnect>: Make parameter
const.
(target_disconnect): Update.
* target.c (target_disconnect): Make "args" const.
* target-delegates.c: Rebuild.
* remote.c (remote_disconnect): Update.
* record.h (record_disconnect): Update.
* record.c (record_disconnect): Update.
* inf-child.c (inf_child_disconnect): Update.
Diffstat (limited to 'gdb/target-delegates.c')
-rw-r--r-- | gdb/target-delegates.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/target-delegates.c b/gdb/target-delegates.c index 522d52b..4eefae8 100644 --- a/gdb/target-delegates.c +++ b/gdb/target-delegates.c @@ -28,14 +28,14 @@ tdefault_detach (struct target_ops *self, const char *arg1, int arg2) } static void -delegate_disconnect (struct target_ops *self, char *arg1, int arg2) +delegate_disconnect (struct target_ops *self, const char *arg1, int arg2) { self = self->beneath; self->to_disconnect (self, arg1, arg2); } static void -tdefault_disconnect (struct target_ops *self, char *arg1, int arg2) +tdefault_disconnect (struct target_ops *self, const char *arg1, int arg2) { tcomplain (); } |