Constify two functions in cp-abi.c

gdb/ChangeLog
2017-09-27  Tom Tromey  <tom@tromey.com>

	* cp-abi.c (set_cp_abi_cmd, show_cp_abi_cmd): Constify.
This commit is contained in:
Tom Tromey 2017-09-09 20:59:50 -06:00
parent 57f5a81bd2
commit 4ada038f6a
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2017-09-27 Tom Tromey <tom@tromey.com>
* cp-abi.c (set_cp_abi_cmd, show_cp_abi_cmd): Constify.
2017-09-27 Tom Tromey <tom@tromey.com>
* arc-tdep.c (dump_arc_instruction_command): Constify.

View File

@ -341,7 +341,7 @@ list_cp_abis (int from_tty)
argument is given. */
static void
set_cp_abi_cmd (char *args, int from_tty)
set_cp_abi_cmd (const char *args, int from_tty)
{
if (args == NULL)
{
@ -378,7 +378,7 @@ cp_abi_completer (struct cmd_list_element *ignore,
/* Show the currently selected C++ ABI. */
static void
show_cp_abi_cmd (char *args, int from_tty)
show_cp_abi_cmd (const char *args, int from_tty)
{
struct ui_out *uiout = current_uiout;