diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-04-28 16:15:19 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-04-28 16:15:19 +0000 |
commit | 8929e59d3f642c8d0b3593ccc5555a4b2f28cb14 (patch) | |
tree | f07705cf718e2d4e9da1eb982085ee076ca2c470 /gdb/valops.c | |
parent | cade9e545bdff114757148b85a70d671b32c5101 (diff) | |
download | gdb-8929e59d3f642c8d0b3593ccc5555a4b2f28cb14.zip gdb-8929e59d3f642c8d0b3593ccc5555a4b2f28cb14.tar.gz gdb-8929e59d3f642c8d0b3593ccc5555a4b2f28cb14.tar.bz2 |
2005-04-28 Andrew Cagney <cagney@gnu.org>
* valops.c (check_field): Make buffer a bfd_byte.
* value.c (unpack_long, unpack_double, unpack_pointer)
(unpack_field_as_long, modify_field): Ditto.
* value.h: Update declarations.
Diffstat (limited to 'gdb/valops.c')
-rw-r--r-- | gdb/valops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/valops.c b/gdb/valops.c index 835567f..d90d5f8 100644 --- a/gdb/valops.c +++ b/gdb/valops.c @@ -2317,7 +2317,7 @@ check_field_in (struct type *type, const char *name) target structure/union is defined, otherwise, return 0. */ int -check_field (struct value *arg1, const char *name) +check_field (struct value *arg1, const bfd_byte *name) { struct type *t; |