aboutsummaryrefslogtreecommitdiff
path: root/gdb/valops.c
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@ericsson.com>2015-11-18 11:20:22 -0500
committerSimon Marchi <simon.marchi@ericsson.com>2015-11-18 11:20:22 -0500
commit7cc3f8e23b5c19a50722adefce986230b191e9cd (patch)
treec201525c8f0e3fab6971bce155966f36a62bd494 /gdb/valops.c
parent79f338988c53625a3ab3fba63f06c6ffd224e9ff (diff)
downloadfsf-binutils-gdb-7cc3f8e23b5c19a50722adefce986230b191e9cd.zip
fsf-binutils-gdb-7cc3f8e23b5c19a50722adefce986230b191e9cd.tar.gz
fsf-binutils-gdb-7cc3f8e23b5c19a50722adefce986230b191e9cd.tar.bz2
Constify value_string
If we constify value_cstring, we might as well constify this one. gdb/ChangeLog: * valops.c (value_string): Constify 'ptr' parameter. * value.h (value_string): Constify 'ptr' parameter.
Diffstat (limited to 'gdb/valops.c')
-rw-r--r--gdb/valops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/valops.c b/gdb/valops.c
index 67e6afe..5e5f685 100644
--- a/gdb/valops.c
+++ b/gdb/valops.c
@@ -1649,7 +1649,7 @@ value_cstring (const char *ptr, ssize_t len, struct type *char_type)
string may contain embedded null bytes. */
struct value *
-value_string (char *ptr, ssize_t len, struct type *char_type)
+value_string (const char *ptr, ssize_t len, struct type *char_type)
{
struct value *val;
int lowbound = current_language->string_lower_bound;