Constify unset_exec_wrapper_command
authorTom Tromey <tom@tromey.com>
Wed, 13 Sep 2017 03:13:03 +0000 (21:13 -0600)
committerTom Tromey <tom@tromey.com>
Wed, 27 Sep 2017 14:44:56 +0000 (08:44 -0600)
gdb/ChangeLog
2017-09-27  Tom Tromey  <tom@tromey.com>

* fork-child.c (unset_exec_wrapper_command): Constify.

gdb/ChangeLog
gdb/fork-child.c

index d75a921..15f20b9 100644 (file)
@@ -1,5 +1,9 @@
 2017-09-27  Tom Tromey  <tom@tromey.com>
 
+       * fork-child.c (unset_exec_wrapper_command): Constify.
+
+2017-09-27  Tom Tromey  <tom@tromey.com>
+
        * btrace.c (get_uint, get_context_size, no_chunk)
        (maint_btrace_packet_history_cmd)
        (maint_btrace_clear_packet_history_cmd, maint_btrace_clear_cmd)
index 194aab5..eb884a7 100644 (file)
@@ -144,7 +144,7 @@ gdb_startup_inferior (pid_t pid, int num_traps)
 /* Implement the "unset exec-wrapper" command.  */
 
 static void
-unset_exec_wrapper_command (char *args, int from_tty)
+unset_exec_wrapper_command (const char *args, int from_tty)
 {
   xfree (exec_wrapper);
   exec_wrapper = NULL;