spelling fix.
[deliverable/binutils-gdb.git] / gdb / m2-valprint.c
index 91e24b7ebcff27b01b7e6f4cdccc197ee8931249..12a2f27e1736bd525b7391b1e4dea4ebcd770d68 100644 (file)
@@ -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));
 }
This page took 0.023724 seconds and 4 git commands to generate.