diff options
author | Tom Tromey <tom@tromey.com> | 2017-09-09 21:39:18 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2017-09-27 08:44:31 -0600 |
commit | 2d0ac1068babfe8800607b17ddb2f31189bdb334 (patch) | |
tree | 5df93692539f51b6ef84b67643e11fa522f529d3 /gdb/cli | |
parent | dede02ce4d2267d044db41a0896af4d670647a04 (diff) | |
download | gdb-2d0ac1068babfe8800607b17ddb2f31189bdb334.zip gdb-2d0ac1068babfe8800607b17ddb2f31189bdb334.tar.gz gdb-2d0ac1068babfe8800607b17ddb2f31189bdb334.tar.bz2 |
Constify commands in cli-dump.c
gdb/ChangeLog
2017-09-27 Tom Tromey <tom@tromey.com>
* cli/cli-dump.c (dump_memory_command, dump_value_command)
(dump_srec_memory, dump_srec_value, dump_ihex_memory)
(dump_ihex_value, dump_verilog_memory, dump_verilog_value)
(dump_tekhex_memory, dump_tekhex_value, dump_binary_memory)
(dump_binary_value, append_binary_memory, append_binary_value):
Constify.
(struct dump_context) <func>: Constify.
(add_dump_command): Update.
Diffstat (limited to 'gdb/cli')
-rw-r--r-- | gdb/cli/cli-dump.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/gdb/cli/cli-dump.c b/gdb/cli/cli-dump.c index 550548a..f4ea2d7 100644 --- a/gdb/cli/cli-dump.c +++ b/gdb/cli/cli-dump.c @@ -215,7 +215,7 @@ dump_memory_to_file (const char *cmd, const char *mode, const char *file_format) } static void -dump_memory_command (char *cmd, const char *mode) +dump_memory_command (const char *cmd, const char *mode) { dump_memory_to_file (cmd, mode, "binary"); } @@ -260,86 +260,86 @@ dump_value_to_file (const char *cmd, const char *mode, const char *file_format) } static void -dump_value_command (char *cmd, const char *mode) +dump_value_command (const char *cmd, const char *mode) { dump_value_to_file (cmd, mode, "binary"); } static void -dump_srec_memory (char *args, int from_tty) +dump_srec_memory (const char *args, int from_tty) { dump_memory_to_file (args, FOPEN_WB, "srec"); } static void -dump_srec_value (char *args, int from_tty) +dump_srec_value (const char *args, int from_tty) { dump_value_to_file (args, FOPEN_WB, "srec"); } static void -dump_ihex_memory (char *args, int from_tty) +dump_ihex_memory (const char *args, int from_tty) { dump_memory_to_file (args, FOPEN_WB, "ihex"); } static void -dump_ihex_value (char *args, int from_tty) +dump_ihex_value (const char *args, int from_tty) { dump_value_to_file (args, FOPEN_WB, "ihex"); } static void -dump_verilog_memory (char *args, int from_tty) +dump_verilog_memory (const char *args, int from_tty) { dump_memory_to_file (args, FOPEN_WB, "verilog"); } static void -dump_verilog_value (char *args, int from_tty) +dump_verilog_value (const char *args, int from_tty) { dump_value_to_file (args, FOPEN_WB, "verilog"); } static void -dump_tekhex_memory (char *args, int from_tty) +dump_tekhex_memory (const char *args, int from_tty) { dump_memory_to_file (args, FOPEN_WB, "tekhex"); } static void -dump_tekhex_value (char *args, int from_tty) +dump_tekhex_value (const char *args, int from_tty) { dump_value_to_file (args, FOPEN_WB, "tekhex"); } static void -dump_binary_memory (char *args, int from_tty) +dump_binary_memory (const char *args, int from_tty) { dump_memory_to_file (args, FOPEN_WB, "binary"); } static void -dump_binary_value (char *args, int from_tty) +dump_binary_value (const char *args, int from_tty) { dump_value_to_file (args, FOPEN_WB, "binary"); } static void -append_binary_memory (char *args, int from_tty) +append_binary_memory (const char *args, int from_tty) { dump_memory_to_file (args, FOPEN_AB, "binary"); } static void -append_binary_value (char *args, int from_tty) +append_binary_value (const char *args, int from_tty) { dump_value_to_file (args, FOPEN_AB, "binary"); } struct dump_context { - void (*func) (char *cmd, const char *mode); + void (*func) (const char *cmd, const char *mode); const char *mode; }; @@ -353,7 +353,7 @@ call_dump_func (struct cmd_list_element *c, char *args, int from_tty) static void add_dump_command (const char *name, - void (*func) (char *args, const char *mode), + void (*func) (const char *args, const char *mode), const char *descr) { |