aboutsummaryrefslogtreecommitdiff
path: root/gdb/target-delegates.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2014-06-06 13:26:53 -0600
committerTom Tromey <tromey@redhat.com>2014-06-16 10:29:17 -0600
commitfee354eeef0b5bb9b1b799e2ce313fc805b2af1a (patch)
treedff86f4f8779dc5d787c9dd24a802ef66b0ce46c /gdb/target-delegates.c
parenta30bf1f15c51b82a0134713bc44175cda296d3ae (diff)
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/target-delegates.c b/gdb/target-delegates.c
index 522d52be48..4eefae8d9b 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 ();
}