2003-03-18 Andrew Cagney <cagney@redhat.com>
authorAndrew Cagney <cagney@redhat.com>
Tue, 18 Mar 2003 22:03:29 +0000 (22:03 +0000)
committerAndrew Cagney <cagney@redhat.com>
Tue, 18 Mar 2003 22:03:29 +0000 (22:03 +0000)
* printcmd.c (print_scalar_formatted): Change VALADDR parameter to
a void pointer.
* gdbtypes.h (print_scalar_formatted): Update declaration.
* expression.h (enum exp_opcode): Remove non-ISO C trailing comma.

gdb/ChangeLog
gdb/expression.h
gdb/gdbtypes.h
gdb/printcmd.c

index 17001c63f60f8012b69c0893d0cc810335e554b2..0a8d16941e6904183c7cb382aad283169fa3e7fa 100644 (file)
@@ -1,3 +1,10 @@
+2003-03-18  Andrew Cagney  <cagney@redhat.com>
+
+       * printcmd.c (print_scalar_formatted): Change VALADDR parameter to
+       a void pointer.
+       * gdbtypes.h (print_scalar_formatted): Update declaration.
+       * expression.h (enum exp_opcode): Remove non-ISO C trailing comma.
+
 2003-03-18  J. Brobecker  <brobecker@gnat.com>
 
        * infrun.c (observer.h): Add #include.
index 60e61d97f0318d2b0e3dbc15f1f2c52ae72179f7..da95fcbcf6215d6599e927fc0486b8dacca89a81 100644 (file)
@@ -322,7 +322,7 @@ enum exp_opcode
     OP_EXPRSTRING,
 
     /* An Objective C Foundation Class NSString constant */
-    OP_OBJC_NSSTRING,
+    OP_OBJC_NSSTRING
   };
 
 union exp_element
index 5a079bf4ae0c7fce20895c0ff73c7113cd4043d5..10466973f7eeefe10a5e179329b4d80412d9e231 100644 (file)
@@ -1250,7 +1250,7 @@ extern void recursive_dump_type (struct type *, int);
 
 /* printcmd.c */
 
-extern void print_scalar_formatted (char *, struct type *, int, int,
+extern void print_scalar_formatted (void *, struct type *, int, int,
                                    struct ui_file *);
 
 extern int can_dereference (struct type *);
index c7b0ffb1b3e75575ae85183bf0155eaf8daaed5c..5196ef049b68516b4404164113ec414389b9a3fa 100644 (file)
@@ -343,7 +343,7 @@ print_formatted (struct value *val, register int format, int size,
    with a format.  */
 
 void
-print_scalar_formatted (char *valaddr, struct type *type, int format, int size,
+print_scalar_formatted (void *valaddr, struct type *type, int format, int size,
                        struct ui_file *stream)
 {
   LONGEST val_long;