diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/gdb/ChangeLog | 4 | ||||
-rw-r--r-- | include/gdb/remote-sim.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/include/gdb/ChangeLog b/include/gdb/ChangeLog index d5afee2..5ffeef3 100644 --- a/include/gdb/ChangeLog +++ b/include/gdb/ChangeLog @@ -1,3 +1,7 @@ +2014-03-05 Mike Frysinger <vapier@gentoo.org> + + * remote-sim.h (sim_load): Add const to prog. + 2014-02-09 Doug Evans <xdje42@gmail.com> * section-scripts.h: New file. diff --git a/include/gdb/remote-sim.h b/include/gdb/remote-sim.h index 985b2cd..b8b2406 100644 --- a/include/gdb/remote-sim.h +++ b/include/gdb/remote-sim.h @@ -140,7 +140,7 @@ void sim_close (SIM_DESC sd, int quitting); Such manipulation should probably (?) occure in sim_create_inferior. */ -SIM_RC sim_load (SIM_DESC sd, char *prog, struct bfd *abfd, int from_tty); +SIM_RC sim_load (SIM_DESC sd, const char *prog, struct bfd *abfd, int from_tty); /* Prepare to run the simulated program. |