Constify delete_bookmark_command
authorTom Tromey <tom@tromey.com>
Wed, 13 Sep 2017 03:09:47 +0000 (21:09 -0600)
committerTom Tromey <tom@tromey.com>
Wed, 27 Sep 2017 14:44:54 +0000 (08:44 -0600)
gdb/ChangeLog
2017-09-27  Tom Tromey  <tom@tromey.com>

* reverse.c (delete_bookmark_command): Constify.

gdb/ChangeLog
gdb/reverse.c

index 37a6635..b3a6611 100644 (file)
@@ -1,5 +1,9 @@
 2017-09-27  Tom Tromey  <tom@tromey.com>
 
+       * reverse.c (delete_bookmark_command): Constify.
+
+2017-09-27  Tom Tromey  <tom@tromey.com>
+
        * remote.c (set_memory_packet_size)
        (set_memory_write_packet_size, show_memory_write_packet_size)
        (set_memory_read_packet_size, show_memory_read_packet_size)
index 80e414a..e7ef5c3 100644 (file)
@@ -201,7 +201,7 @@ delete_all_bookmarks (void)
 }
 
 static void
-delete_bookmark_command (char *args, int from_tty)
+delete_bookmark_command (const char *args, int from_tty)
 {
   if (bookmark_chain == NULL)
     {