cli-setshow.c: Constify variable
authorSimon Marchi <simon.marchi@polymtl.ca>
Sun, 25 Oct 2015 02:28:56 +0000 (22:28 -0400)
committerSimon Marchi <simon.marchi@polymtl.ca>
Sun, 25 Oct 2015 02:29:16 +0000 (22:29 -0400)
Fixes:

/home/simark/src/binutils-gdb/gdb/cli/cli-setshow.c:390:13: error: invalid conversion from ‘const char*’ to ‘char*’ [-fpermissive]
  p = strchr (arg, ' ');
             ^
gdb/ChangeLog:

* cli/cli-setshow.c (do_set_command): Constify p.

gdb/ChangeLog
gdb/cli/cli-setshow.c

index d658649025db77ca6ba3410929ce99749c699ac3..3017fd0da0909463fb5743de9fcba949570e4153 100644 (file)
@@ -1,3 +1,7 @@
+2015-10-24  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * cli/cli-setshow.c (do_set_command): Constify p.
+
 2015-10-24  Simon Marchi  <simon.marchi@polymtl.ca>
 
        * nat/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Replace
index 1ffb80b4a65e87e3f52cbb7f94fbf07eb7258e71..74d2d007e39d0fd81a6dc0f976b3c81db387c53e 100644 (file)
@@ -361,7 +361,7 @@ do_set_command (const char *arg, int from_tty, struct cmd_list_element *c)
        int len;
        int nmatches;
        const char *match = NULL;
-       char *p;
+       const char *p;
 
        /* If no argument was supplied, print an informative error
           message.  */