[RFA,07/67] Constify two functions in cp-abi.c

Message ID 20170921051023.19023-8-tom@tromey.com
State New, archived
Headers

Commit Message

Tom Tromey Sept. 21, 2017, 5:09 a.m. UTC
  ChangeLog
2017-09-20  Tom Tromey  <tom@tromey.com>

	* cp-abi.c (set_cp_abi_cmd, show_cp_abi_cmd): Constify.
---
 gdb/ChangeLog | 4 ++++
 gdb/cp-abi.c  | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)
  

Patch

diff --git a/gdb/cp-abi.c b/gdb/cp-abi.c
index 49fab32..11b8424 100644
--- a/gdb/cp-abi.c
+++ b/gdb/cp-abi.c
@@ -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;