[RFA,43/67] Constify some commands in probes.c

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

	* probe.c (enable_probes_command, disable_probes_command):
	Constify.
---
 gdb/ChangeLog | 5 +++++
 gdb/probe.c   | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)
  

Comments

Sergio Durigan Junior Sept. 21, 2017, 12:47 p.m. UTC | #1
On Thursday, September 21 2017, Tom Tromey wrote:

> ChangeLog
> 2017-09-20  Tom Tromey  <tom@tromey.com>
>
> 	* probe.c (enable_probes_command, disable_probes_command):
> 	Constify.

This is OK.

Thanks,

> ---
>  gdb/ChangeLog | 5 +++++
>  gdb/probe.c   | 4 ++--
>  2 files changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/gdb/probe.c b/gdb/probe.c
> index f44d25d..c6435e4 100644
> --- a/gdb/probe.c
> +++ b/gdb/probe.c
> @@ -674,7 +674,7 @@ info_probes_command (char *arg, int from_tty)
>  /* Implementation of the `enable probes' command.  */
>  
>  static void
> -enable_probes_command (char *arg, int from_tty)
> +enable_probes_command (const char *arg, int from_tty)
>  {
>    std::string provider, probe_name, objname;
>    struct cleanup *cleanup = make_cleanup (null_cleanup, NULL);
> @@ -713,7 +713,7 @@ enable_probes_command (char *arg, int from_tty)
>  /* Implementation of the `disable probes' command.  */
>  
>  static void
> -disable_probes_command (char *arg, int from_tty)
> +disable_probes_command (const char *arg, int from_tty)
>  {
>    std::string provider, probe_name, objname;
>    struct cleanup *cleanup = make_cleanup (null_cleanup, NULL);
> -- 
> 2.9.4
  

Patch

diff --git a/gdb/probe.c b/gdb/probe.c
index f44d25d..c6435e4 100644
--- a/gdb/probe.c
+++ b/gdb/probe.c
@@ -674,7 +674,7 @@  info_probes_command (char *arg, int from_tty)
 /* Implementation of the `enable probes' command.  */
 
 static void
-enable_probes_command (char *arg, int from_tty)
+enable_probes_command (const char *arg, int from_tty)
 {
   std::string provider, probe_name, objname;
   struct cleanup *cleanup = make_cleanup (null_cleanup, NULL);
@@ -713,7 +713,7 @@  enable_probes_command (char *arg, int from_tty)
 /* Implementation of the `disable probes' command.  */
 
 static void
-disable_probes_command (char *arg, int from_tty)
+disable_probes_command (const char *arg, int from_tty)
 {
   std::string provider, probe_name, objname;
   struct cleanup *cleanup = make_cleanup (null_cleanup, NULL);