diff options
author | Steve Ellcey <sellcey@mips.com> | 2013-03-15 17:53:41 +0000 |
---|---|---|
committer | Steve Ellcey <sellcey@mips.com> | 2013-03-15 17:53:41 +0000 |
commit | f30aaf7d9fb2ff28a44d7f9ad544dc51ca66eaad (patch) | |
tree | 850c1722d4e4a3fb9c57ae409123e770e4bf6926 /include/gdb/remote-sim.h | |
parent | 01aff1ea3752f4531599db435db787c8065b9963 (diff) | |
download | cygnal-f30aaf7d9fb2ff28a44d7f9ad544dc51ca66eaad.tar.gz cygnal-f30aaf7d9fb2ff28a44d7f9ad544dc51ca66eaad.tar.bz2 cygnal-f30aaf7d9fb2ff28a44d7f9ad544dc51ca66eaad.zip |
gdb:
2013-03-15 Steve Ellcey <sellcey@mips.com>
* remote-sim.c (sim_command_completer): Make char arguments const.
include:
2013-03-15 Steve Ellcey <sellcey@mips.com>
* gdb/remote-sim.h (sim_command_completer): Make char arguments const.
sim:
2013-03-15 Steve Ellcey <sellcey@mips.com>
* arm/wrapper.c (sim_complete_command): Make char arguments const.
* avr/interp.c (sim_complete_command): Ditto.
* common/sim-options.c (sim_complete_command): Ditto.
* cr16/interp.c (sim_complete_command): Ditto.
* erc32/interf.c (sim_complete_command): Ditto.
* m32c/gdb-if.c (sim_complete_command): Ditto.
* microblaze/interp.c (sim_complete_command): Ditto.
* ppc/sim_calls.c (sim_complete_command): Ditto.
* rl78/gdb-if.c (sim_complete_command): Ditto.
* rx/gdb-if.c (sim_complete_command): Ditto.
* sh/interp.c (sim_complete_command): Ditto.
Diffstat (limited to 'include/gdb/remote-sim.h')
-rw-r--r-- | include/gdb/remote-sim.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gdb/remote-sim.h b/include/gdb/remote-sim.h index 43c22ebc3..113030c82 100644 --- a/include/gdb/remote-sim.h +++ b/include/gdb/remote-sim.h @@ -278,7 +278,7 @@ void sim_do_command (SIM_DESC sd, char *cmd); /* Complete a command based on the available sim commands. Returns an array of possible matches. */ -char **sim_complete_command (SIM_DESC sd, char *text, char *word); +char **sim_complete_command (SIM_DESC sd, const char *text, const char *word); #ifdef __cplusplus } |