diff options
author | Tom Tromey <tom@tromey.com> | 2017-09-12 21:13:40 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2017-09-27 08:44:57 -0600 |
commit | 8384c35618fdfa66ea3ec6e84072cccc6192dd48 (patch) | |
tree | 3d5fabb72b89428250abe173ddc5feecb20ee0d9 | |
parent | 884beb0c41d8479e3c05f3492cb65da05ed882d1 (diff) | |
download | gdb-8384c35618fdfa66ea3ec6e84072cccc6192dd48.zip gdb-8384c35618fdfa66ea3ec6e84072cccc6192dd48.tar.gz gdb-8384c35618fdfa66ea3ec6e84072cccc6192dd48.tar.bz2 |
Constify save_gdb_index_command
gdb/ChangeLog
2017-09-27 Tom Tromey <tom@tromey.com>
* dwarf2read.c (save_gdb_index_command): Constify.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/dwarf2read.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 141e811..8aa6b13 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2017-09-27 Tom Tromey <tom@tromey.com> + * dwarf2read.c (save_gdb_index_command): Constify. + +2017-09-27 Tom Tromey <tom@tromey.com> + * stap-probe.c (info_probes_stap_command): Constify. 2017-09-27 Tom Tromey <tom@tromey.com> diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index 11f1c88..8c056da 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -24028,7 +24028,7 @@ write_psymtabs_to_index (struct objfile *objfile, const char *dir) GDB manual. Any changes here must be documented there. */ static void -save_gdb_index_command (char *arg, int from_tty) +save_gdb_index_command (const char *arg, int from_tty) { struct objfile *objfile; |