[RFA,22/67] Constify user_defined_command

Message ID 20170921051023.19023-23-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>

	* cli/cli-script.c (user_defined_command): Constify.
---
 gdb/ChangeLog        | 4 ++++
 gdb/cli/cli-script.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)
  

Patch

diff --git a/gdb/cli/cli-script.c b/gdb/cli/cli-script.c
index 37466fd..0a93e8b 100644
--- a/gdb/cli/cli-script.c
+++ b/gdb/cli/cli-script.c
@@ -1401,7 +1401,7 @@  validate_comname (char **comname)
 
 /* This is just a placeholder in the command data structures.  */
 static void
-user_defined_command (char *ignore, int from_tty)
+user_defined_command (const char *ignore, int from_tty)
 {
 }