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

* top.c (new_ui_command): Constify.

gdb/ChangeLog
gdb/top.c

index 76585e8..4218f96 100644 (file)
@@ -1,5 +1,9 @@
 2017-09-27  Tom Tromey  <tom@tromey.com>
 
+       * top.c (new_ui_command): Constify.
+
+2017-09-27  Tom Tromey  <tom@tromey.com>
+
        * symfile.c (add_symbol_file_command)
        (remove_symbol_file_command, list_overlays_command)
        (map_overlay_command, unmap_overlay_command)
index c89e78f..4fc987c 100644 (file)
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -354,7 +354,7 @@ open_terminal_stream (const char *name)
 /* Implementation of the "new-ui" command.  */
 
 static void
-new_ui_command (char *args, int from_tty)
+new_ui_command (const char *args, int from_tty)
 {
   struct ui *ui;
   struct interp *interp;