diff options
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 eaab916..38ca2b4 100644 --- a/gdb/target-delegates.c +++ b/gdb/target-delegates.c @@ -381,14 +381,14 @@ tdefault_kill (struct target_ops *self) } static void -delegate_load (struct target_ops *self, char *arg1, int arg2) +delegate_load (struct target_ops *self, const char *arg1, int arg2) { self = self->beneath; self->to_load (self, arg1, arg2); } static void -tdefault_load (struct target_ops *self, char *arg1, int arg2) +tdefault_load (struct target_ops *self, const char *arg1, int arg2) { tcomplain (); } |