GNU Binutils with patches for OS216
Revision | 8384c35618fdfa66ea3ec6e84072cccc6192dd48 (tree) |
---|---|
Zeit | 2017-09-27 23:44:57 |
Autor | Tom Tromey <tom@trom...> |
Commiter | Tom Tromey |
Constify save_gdb_index_command
gdb/ChangeLog
2017-09-27 Tom Tromey <tom@tromey.com>
* dwarf2read.c (save_gdb_index_command): Constify.
@@ -1,5 +1,9 @@ | ||
1 | 1 | 2017-09-27 Tom Tromey <tom@tromey.com> |
2 | 2 | |
3 | + * dwarf2read.c (save_gdb_index_command): Constify. | |
4 | + | |
5 | +2017-09-27 Tom Tromey <tom@tromey.com> | |
6 | + | |
3 | 7 | * stap-probe.c (info_probes_stap_command): Constify. |
4 | 8 | |
5 | 9 | 2017-09-27 Tom Tromey <tom@tromey.com> |
@@ -24028,7 +24028,7 @@ write_psymtabs_to_index (struct objfile *objfile, const char *dir) | ||
24028 | 24028 | GDB manual. Any changes here must be documented there. */ |
24029 | 24029 | |
24030 | 24030 | static void |
24031 | -save_gdb_index_command (char *arg, int from_tty) | |
24031 | +save_gdb_index_command (const char *arg, int from_tty) | |
24032 | 24032 | { |
24033 | 24033 | struct objfile *objfile; |
24034 | 24034 |