aboutsummaryrefslogtreecommitdiff
path: root/gdb/memattr.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2017-09-09 21:30:40 -0600
committerTom Tromey <tom@tromey.com>2017-09-27 08:44:26 -0600
commit4465d9db2f8962640f3799a17851bef3b1be1a33 (patch)
treec51ea7873d1cc02712f0fc273ce31acaf3e30ef0 /gdb/memattr.c
parentad25e4234a3f370a693b9c392c5b54216aab4592 (diff)
downloadfsf-binutils-gdb-4465d9db2f8962640f3799a17851bef3b1be1a33.zip
fsf-binutils-gdb-4465d9db2f8962640f3799a17851bef3b1be1a33.tar.gz
fsf-binutils-gdb-4465d9db2f8962640f3799a17851bef3b1be1a33.tar.bz2
Constify some functions in memattr.c
gdb/ChangeLog 2017-09-27 Tom Tromey <tom@tromey.com> * memattr.c (enable_mem_command, disable_mem_command) (delete_mem_command): Constify.
Diffstat (limited to 'gdb/memattr.c')
-rw-r--r--gdb/memattr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/memattr.c b/gdb/memattr.c
index c1ac978..5be6397 100644
--- a/gdb/memattr.c
+++ b/gdb/memattr.c
@@ -561,7 +561,7 @@ mem_enable (int num)
}
static void
-enable_mem_command (char *args, int from_tty)
+enable_mem_command (const char *args, int from_tty)
{
int num;
struct mem_region *m;
@@ -606,7 +606,7 @@ mem_disable (int num)
}
static void
-disable_mem_command (char *args, int from_tty)
+disable_mem_command (const char *args, int from_tty)
{
require_user_regions (from_tty);
@@ -659,7 +659,7 @@ mem_delete (int num)
}
static void
-delete_mem_command (char *args, int from_tty)
+delete_mem_command (const char *args, int from_tty)
{
require_user_regions (from_tty);