summaryrefslogtreecommitdiff
path: root/gdb/value.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2011-05-18 20:19:44 +0000
committerTom Tromey <tromey@redhat.com>2011-05-18 20:19:44 +0000
commitb0bee2113ed643c1c931511ada9ec1e2766c63b0 (patch)
tree534f63e7c50fa42b1e72ecd26b30859e0ba4286c /gdb/value.c
parentb07c110f9c84461fc496eb4a862b10e6e8c1d22f (diff)
downloadgdb-b0bee2113ed643c1c931511ada9ec1e2766c63b0.tar.gz
* dwarf2read.c (dwarf2_add_field): Constify.
* value.c (value_static_field): Constify. * gdbtypes.h (struct main_type) <field.field_location.physname>: Now const. * ax-gdb.c (gen_static_field): Constify
Diffstat (limited to 'gdb/value.c')
-rw-r--r--gdb/value.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/value.c b/gdb/value.c
index 2a8f3fce26a..ccd29c83b0a 100644
--- a/gdb/value.c
+++ b/gdb/value.c
@@ -2388,7 +2388,7 @@ value_static_field (struct type *type, int fieldno)
break;
case FIELD_LOC_KIND_PHYSNAME:
{
- char *phys_name = TYPE_FIELD_STATIC_PHYSNAME (type, fieldno);
+ const char *phys_name = TYPE_FIELD_STATIC_PHYSNAME (type, fieldno);
/* TYPE_FIELD_NAME (type, fieldno); */
struct symbol *sym = lookup_symbol (phys_name, 0, VAR_DOMAIN, 0);