From 9cbe5fff2b47da85dbc628bdc8c6a85d5344749a Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Wed, 27 Mar 2013 14:14:26 -0600 Subject: constify to_load This makes the argument to the target_ops to_load method "const", and fixes up the fallout. Tested by rebuilding all the affected files. 2014-06-26 Tom Tromey * defs.h (generic_load): Update. * m32r-rom.c (m32r_load_gen): Make "filename" const. * monitor.c (monitor_load): Make "args" const. * remote-m32r-sdi.c (m32r_load): Make "args" const. * remote-mips.c (mips_load_srec, pmon_load_fast): Make "args" const. (mips_load): Make "file" const. * remote-sim.c (gdbsim_load): Make "args" const. * remote.c (remote_load): Make "name" const. * symfile.c (generic_load): Make "args" const. * target-delegates.c: Rebuild. * target.c (target_load): Make "arg" const. (debug_to_load): Make "args" const. * target.h (struct target_ops) : Make parameter const. (target_load): Update. --- gdb/m32r-rom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/m32r-rom.c') diff --git a/gdb/m32r-rom.c b/gdb/m32r-rom.c index 2ca23ae..0ab252a 100644 --- a/gdb/m32r-rom.c +++ b/gdb/m32r-rom.c @@ -196,7 +196,7 @@ m32r_load (char *filename, int from_tty) } static void -m32r_load_gen (struct target_ops *self, char *filename, int from_tty) +m32r_load_gen (struct target_ops *self, const char *filename, int from_tty) { generic_load (filename, from_tty); } -- cgit v1.1