Constify info_probes_dtrace_command

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

	* dtrace-probe.c (info_probes_dtrace_command): Constify.
This commit is contained in:
Tom Tromey 2017-09-09 20:57:56 -06:00
parent eb7c454d73
commit 8d97dc1cea
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2017-09-27 Tom Tromey <tom@tromey.com>
* dtrace-probe.c (info_probes_dtrace_command): Constify.
2017-09-27 Tom Tromey <tom@tromey.com>
* command.h (not_just_help_class_command): Update.

View file

@ -904,7 +904,7 @@ const struct probe_ops dtrace_probe_ops =
/* Implementation of the `info probes dtrace' command. */
static void
info_probes_dtrace_command (char *arg, int from_tty)
info_probes_dtrace_command (const char *arg, int from_tty)
{
info_probes_for_ops (arg, from_tty, &dtrace_probe_ops);
}