aboutsummaryrefslogtreecommitdiff
path: root/gdb/memattr.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2003-06-03 20:54:43 +0000
committerAndrew Cagney <cagney@redhat.com>2003-06-03 20:54:43 +0000
commita9596cd98aa07c137ed362c7d92df64213b4fa04 (patch)
tree93d2aea2e0fa868da0f9b56626e5cfe8c2341869 /gdb/memattr.c
parent74eda9eb7acc3c2bd375826f92e8ca233d5f767a (diff)
downloadbinutils-cagney_writestrings-20030508-branch.zip
binutils-cagney_writestrings-20030508-branch.tar.gz
binutils-cagney_writestrings-20030508-branch.tar.bz2
Diffstat (limited to 'gdb/memattr.c')
-rw-r--r--gdb/memattr.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/gdb/memattr.c b/gdb/memattr.c
index 05ad413..ef53adf 100644
--- a/gdb/memattr.c
+++ b/gdb/memattr.c
@@ -133,7 +133,7 @@ lookup_mem_region (CORE_ADDR addr)
static void
-mem_command (char *args, int from_tty)
+mem_command (const char *args, int from_tty)
{
CORE_ADDR lo, hi;
char *tok;
@@ -211,7 +211,7 @@ mem_command (char *args, int from_tty)
static void
-mem_info_command (char *args, int from_tty)
+mem_info_command (const char *args, int from_tty)
{
struct mem_region *m;
struct mem_attrib *attrib;
@@ -350,10 +350,10 @@ mem_enable (int num)
}
static void
-mem_enable_command (char *args, int from_tty)
+mem_enable_command (const char *args, int from_tty)
{
- char *p = args;
- char *p1;
+ const char *p = args;
+ const char *p1;
int num;
struct mem_region *m;
@@ -400,10 +400,10 @@ mem_disable (int num)
}
static void
-mem_disable_command (char *args, int from_tty)
+mem_disable_command (const char *args, int from_tty)
{
- char *p = args;
- char *p1;
+ const char *p = args;
+ const char *p1;
int num;
struct mem_region *m;
@@ -479,10 +479,10 @@ mem_delete (int num)
}
static void
-mem_delete_command (char *args, int from_tty)
+mem_delete_command (const char *args, int from_tty)
{
- char *p = args;
- char *p1;
+ const char *p = args;
+ const char *p1;
int num;
dcache_invalidate (target_dcache);