Constify user_defined_command
authorTom Tromey <tom@tromey.com>
Sun, 10 Sep 2017 03:40:16 +0000 (21:40 -0600)
committerTom Tromey <tom@tromey.com>
Wed, 27 Sep 2017 14:44:31 +0000 (08:44 -0600)
gdb/ChangeLog
2017-09-27  Tom Tromey  <tom@tromey.com>

* cli/cli-script.c (user_defined_command): Constify.

gdb/ChangeLog
gdb/cli/cli-script.c

index f65691d..9ff18c6 100644 (file)
@@ -1,5 +1,9 @@
 2017-09-27  Tom Tromey  <tom@tromey.com>
 
+       * cli/cli-script.c (user_defined_command): Constify.
+
+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)
index 37466fd..0a93e8b 100644 (file)
@@ -1401,7 +1401,7 @@ validate_comname (char **comname)
 
 /* This is just a placeholder in the command data structures.  */
 static void
-user_defined_command (char *ignore, int from_tty)
+user_defined_command (const char *ignore, int from_tty)
 {
 }