diff options
author | Tom Tromey <tom@tromey.com> | 2017-09-09 21:44:55 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2017-09-27 08:44:35 -0600 |
commit | 32faf971cd86d0a13c6b3db4626d4c8bd119e6c5 (patch) | |
tree | 9156a72f8af76b9a301cc53064b22abbf819f0a6 | |
parent | 2cf311ebadb5058afb983c61363fc2595c01b9e4 (diff) | |
download | gdb-32faf971cd86d0a13c6b3db4626d4c8bd119e6c5.zip gdb-32faf971cd86d0a13c6b3db4626d4c8bd119e6c5.tar.gz gdb-32faf971cd86d0a13c6b3db4626d4c8bd119e6c5.tar.bz2 |
Constify new_ui_command
gdb/ChangeLog
2017-09-27 Tom Tromey <tom@tromey.com>
* top.c (new_ui_command): Constify.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/top.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 76585e8..4218f96 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -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) @@ -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; |