diff options
author | Tom Tromey <tom@tromey.com> | 2017-09-12 21:30:50 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2017-09-27 08:45:06 -0600 |
commit | 7776370010db4d85a89a0dfde391aa9170ac1bbe (patch) | |
tree | f6873e5555f86e83f9a6d02619c08b3cfcfd52c6 /gdb/printcmd.c | |
parent | 4495129abde9922d77215233837fb47738722de9 (diff) | |
download | binutils-gdb-7776370010db4d85a89a0dfde391aa9170ac1bbe.tar.gz |
Constify some commands in printcmd.c
gdb/ChangeLog
2017-09-27 Tom Tromey <tom@tromey.com>
* printcmd.c (map_display_numbers, undisplay_command)
(enable_disable_display_command, enable_display_command)
(disable_display_command): Constify.
Diffstat (limited to 'gdb/printcmd.c')
-rw-r--r-- | gdb/printcmd.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/printcmd.c b/gdb/printcmd.c index 033d68768f8..de1f76c2e33 100644 --- a/gdb/printcmd.c +++ b/gdb/printcmd.c @@ -1795,7 +1795,7 @@ delete_display (struct display *display) ARGS. DATA is passed unmodified to FUNCTION. */ static void -map_display_numbers (char *args, +map_display_numbers (const char *args, void (*function) (struct display *, void *), void *data) @@ -1840,7 +1840,7 @@ do_delete_display (struct display *d, void *data) /* "undisplay" command. */ static void -undisplay_command (char *args, int from_tty) +undisplay_command (const char *args, int from_tty) { if (args == NULL) { @@ -2085,7 +2085,7 @@ do_enable_disable_display (struct display *d, void *data) commands. ENABLE decides what to do. */ static void -enable_disable_display_command (char *args, int from_tty, int enable) +enable_disable_display_command (const char *args, int from_tty, int enable) { if (args == NULL) { @@ -2102,7 +2102,7 @@ enable_disable_display_command (char *args, int from_tty, int enable) /* The "enable display" command. */ static void -enable_display_command (char *args, int from_tty) +enable_display_command (const char *args, int from_tty) { enable_disable_display_command (args, from_tty, 1); } @@ -2110,7 +2110,7 @@ enable_display_command (char *args, int from_tty) /* The "disable display" command. */ static void -disable_display_command (char *args, int from_tty) +disable_display_command (const char *args, int from_tty) { enable_disable_display_command (args, from_tty, 0); } |