diff options
author | Tom Tromey <tromey@redhat.com> | 2014-07-22 10:47:53 -0600 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-07-30 08:02:52 -0600 |
commit | e799154c3bf1aac0bffd869df5eed7a959305d00 (patch) | |
tree | 5f73896f9f771cfa01e7b2bfddcf234632ed6bf4 /gdb/breakpoint.c | |
parent | 5f08566b92f63e60559577dedfabf9ed517a3ddf (diff) | |
download | gdb-e799154c3bf1aac0bffd869df5eed7a959305d00.zip gdb-e799154c3bf1aac0bffd869df5eed7a959305d00.tar.gz gdb-e799154c3bf1aac0bffd869df5eed7a959305d00.tar.bz2 |
constify some cli-utils stuff
This constifies a few functions in cli-utils -- get_number_trailer and
friends -- and then fixes the fallout.
2014-07-30 Tom Tromey <tromey@redhat.com>
* breakpoint.c (map_breakpoint_numbers): Update.
* cli/cli-utils.c (get_number_trailer): Make "pp" const. Update.
(get_number_const): New function.
(get_number): Rewrite using get_number_const.
(init_number_or_range): Make "string" const.
(number_is_in_list): Make "list" const.
* cli/cli-utils.h (get_number_const): Declare.
(struct get_number_or_range_state) <string, end_ptr>: Now const.
(init_number_or_range, number_is_in_list): Update.
* printcmd.c (map_display_numbers): Update.
* value.c (value_from_history_ref): Constify.
* value.h (value_from_history_ref): Update.
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 262e992..8cd7660 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -14788,7 +14788,7 @@ map_breakpoint_numbers (char *args, void (*function) (struct breakpoint *, while (!state.finished) { - char *p = state.string; + const char *p = state.string; match = 0; |