Constify two functions in linux-fork.c
authorTom Tromey <tom@tromey.com>
Sun, 10 Sep 2017 03:00:26 +0000 (21:00 -0600)
committerTom Tromey <tom@tromey.com>
Wed, 27 Sep 2017 14:44:19 +0000 (08:44 -0600)
gdb/ChangeLog
2017-09-27  Tom Tromey  <tom@tromey.com>

* linux-fork.c (delete_checkpoint_command)
(detach_checkpoint_command): Constify.

gdb/ChangeLog
gdb/linux-fork.c

index 74e805d..00de27b 100644 (file)
@@ -1,5 +1,10 @@
 2017-09-27  Tom Tromey  <tom@tromey.com>
 
+       * linux-fork.c (delete_checkpoint_command)
+       (detach_checkpoint_command): Constify.
+
+2017-09-27  Tom Tromey  <tom@tromey.com>
+
        * cp-abi.c (set_cp_abi_cmd, show_cp_abi_cmd): Constify.
 
 2017-09-27  Tom Tromey  <tom@tromey.com>
index 6b9c6a8..554cfae 100644 (file)
@@ -503,7 +503,7 @@ out:
 /* Fork list <-> user interface.  */
 
 static void
-delete_checkpoint_command (char *args, int from_tty)
+delete_checkpoint_command (const char *args, int from_tty)
 {
   ptid_t ptid, pptid;
   struct fork_info *fi;
@@ -544,7 +544,7 @@ Please switch to another checkpoint before deleting the current one"));
 }
 
 static void
-detach_checkpoint_command (char *args, int from_tty)
+detach_checkpoint_command (const char *args, int from_tty)
 {
   ptid_t ptid;