Constify some commands in inferior.c
authorTom Tromey <tom@tromey.com>
Wed, 13 Sep 2017 03:32:18 +0000 (21:32 -0600)
committerTom Tromey <tom@tromey.com>
Wed, 27 Sep 2017 14:45:08 +0000 (08:45 -0600)
gdb/ChangeLog
2017-09-27  Tom Tromey  <tom@tromey.com>

* inferior.c (detach_inferior_command, kill_inferior_command)
(inferior_command): Constify.

gdb/ChangeLog
gdb/inferior.c

index cece16ab63478174bed95de47a9c679046f11a98..6a3476946a8ab59647c4fa72090c542edaa60955 100644 (file)
@@ -1,3 +1,8 @@
+2017-09-27  Tom Tromey  <tom@tromey.com>
+
+       * inferior.c (detach_inferior_command, kill_inferior_command)
+       (inferior_command): Constify.
+
 2017-09-27  Tom Tromey  <tom@tromey.com>
 
        * regcache.c (regcache_print, maintenance_print_registers)
index b916909905c052499dab27c45b03b9c5edd1bceb..ba8efe23426797c7fb0585f7471df005eade3519 100644 (file)
@@ -596,7 +596,7 @@ print_inferior (struct ui_out *uiout, char *requested_inferiors)
 }
 
 static void
-detach_inferior_command (char *args, int from_tty)
+detach_inferior_command (const char *args, int from_tty)
 {
   struct thread_info *tp;
 
@@ -635,7 +635,7 @@ detach_inferior_command (char *args, int from_tty)
 }
 
 static void
-kill_inferior_command (char *args, int from_tty)
+kill_inferior_command (const char *args, int from_tty)
 {
   struct thread_info *tp;
 
@@ -676,7 +676,7 @@ kill_inferior_command (char *args, int from_tty)
 }
 
 static void
-inferior_command (char *args, int from_tty)
+inferior_command (const char *args, int from_tty)
 {
   struct inferior *inf;
   int num;