diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/remote-sim.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2129d6f..8108e50 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2014-03-05 Mike Frysinger <vapier@gentoo.org> + + * remote-sim.c (gdbsim_load): Add const to prog. + 2014-03-03 Tom Tromey <tromey@redhat.com> * elfread.c (probe_key): Change to bfd_data. diff --git a/gdb/remote-sim.c b/gdb/remote-sim.c index 0614690..3bda043 100644 --- a/gdb/remote-sim.c +++ b/gdb/remote-sim.c @@ -564,7 +564,7 @@ static void gdbsim_load (struct target_ops *self, char *args, int fromtty) { char **argv; - char *prog; + const char *prog; struct sim_inferior_data *sim_data = get_sim_inferior_data (current_inferior (), SIM_INSTANCE_NEEDED); |