Constify some commands in source.c
authorTom Tromey <tom@tromey.com>
Tue, 12 Sep 2017 20:45:14 +0000 (14:45 -0600)
committerTom Tromey <tom@tromey.com>
Wed, 27 Sep 2017 14:44:43 +0000 (08:44 -0600)
gdb/ChangeLog
2017-09-27  Tom Tromey  <tom@tromey.com>

* source.c (show_substitute_path_command)
(unset_substitute_path_command, set_substitute_path_command):
Constify.

gdb/ChangeLog
gdb/source.c

index bfde0e8..1134c5e 100644 (file)
@@ -1,5 +1,11 @@
 2017-09-27  Tom Tromey  <tom@tromey.com>
 
+       * source.c (show_substitute_path_command)
+       (unset_substitute_path_command, set_substitute_path_command):
+       Constify.
+
+2017-09-27  Tom Tromey  <tom@tromey.com>
+
        * typeprint.c (maintenance_print_type): Constify.
        * maint.c (maintenance_dump_me, maintenance_demangle)
        (maintenance_time_display, maintenance_info_sections)
index 0564c15..aa672fd 100644 (file)
@@ -1850,7 +1850,7 @@ delete_substitute_path_rule (struct substitute_path_rule *rule)
 /* Implement the "show substitute-path" command.  */
 
 static void
-show_substitute_path_command (char *args, int from_tty)
+show_substitute_path_command (const char *args, int from_tty)
 {
   struct substitute_path_rule *rule = substitute_path_rules;
   char *from = NULL;
@@ -1884,7 +1884,7 @@ show_substitute_path_command (char *args, int from_tty)
 /* Implement the "unset substitute-path" command.  */
 
 static void
-unset_substitute_path_command (char *args, int from_tty)
+unset_substitute_path_command (const char *args, int from_tty)
 {
   struct substitute_path_rule *rule = substitute_path_rules;
   gdb_argv argv (args);
@@ -1935,7 +1935,7 @@ unset_substitute_path_command (char *args, int from_tty)
 /* Add a new source path substitution rule.  */
 
 static void
-set_substitute_path_command (char *args, int from_tty)
+set_substitute_path_command (const char *args, int from_tty)
 {
   struct substitute_path_rule *rule;