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

* windows-tdep.c (display_tib): Constify.

gdb/ChangeLog
gdb/windows-tdep.c

index 00de27b..676aadd 100644 (file)
@@ -1,5 +1,9 @@
 2017-09-27  Tom Tromey  <tom@tromey.com>
 
+       * windows-tdep.c (display_tib): Constify.
+
+2017-09-27  Tom Tromey  <tom@tromey.com>
+
        * linux-fork.c (delete_checkpoint_command)
        (detach_checkpoint_command): Constify.
 
index 197d779..49402d3 100644 (file)
@@ -361,7 +361,7 @@ display_one_tib (ptid_t ptid)
 /* Display thread information block of the current thread.  */
 
 static void
-display_tib (char * args, int from_tty)
+display_tib (const char * args, int from_tty)
 {
   if (!ptid_equal (inferior_ptid, null_ptid))
     display_one_tib (inferior_ptid);