From 4ef1f4677390c085543fe80eec41b0fe5d58ddca Mon Sep 17 00:00:00 2001 From: David Taylor Date: Mon, 28 Dec 1998 23:06:13 +0000 Subject: hp merge changes -- too numerous to mention here; see ChangeLog and ChangeLog-gdbtk for details. --- gdb/m2-valprint.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'gdb/m2-valprint.c') diff --git a/gdb/m2-valprint.c b/gdb/m2-valprint.c index 91e24b7..12a2f27 100644 --- a/gdb/m2-valprint.c +++ b/gdb/m2-valprint.c @@ -27,10 +27,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* FIXME: For now, just explicitly declare c_val_print and use it instead */ int -m2_val_print (type, valaddr, address, stream, format, deref_ref, recurse, - pretty) +m2_val_print (type, valaddr, embedded_offset, address, + stream, format, deref_ref, recurse, pretty) struct type *type; char *valaddr; + int embedded_offset; CORE_ADDR address; GDB_FILE *stream; int format; @@ -39,8 +40,8 @@ m2_val_print (type, valaddr, address, stream, format, deref_ref, recurse, enum val_prettyprint pretty; { extern int - c_val_print PARAMS ((struct type *, char *, CORE_ADDR, GDB_FILE *, int, int, - int, enum val_prettyprint)); - return (c_val_print (type, valaddr, address, stream, format, deref_ref, + c_val_print PARAMS ((struct type *, char *, int, CORE_ADDR, + GDB_FILE *, int, int, int, enum val_prettyprint)); + return (c_val_print (type, valaddr, 0, address, stream, format, deref_ref, recurse, pretty)); } -- cgit v1.1