diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-06-03 20:54:43 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-06-03 20:54:43 +0000 |
commit | a9596cd98aa07c137ed362c7d92df64213b4fa04 (patch) | |
tree | 93d2aea2e0fa868da0f9b56626e5cfe8c2341869 /gdb/memattr.c | |
parent | 74eda9eb7acc3c2bd375826f92e8ca233d5f767a (diff) | |
download | binutils-cagney_writestrings-20030508-branch.zip binutils-cagney_writestrings-20030508-branch.tar.gz binutils-cagney_writestrings-20030508-branch.tar.bz2 |
Snap const char * mess.cagney_writestrings-20030508-branch
Diffstat (limited to 'gdb/memattr.c')
-rw-r--r-- | gdb/memattr.c | 22 |
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); |