summaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2003-03-18 22:03:29 +0000
committerAndrew Cagney <cagney@redhat.com>2003-03-18 22:03:29 +0000
commitdf2066fb704c5981aee6a0505fe9eef874ed23a7 (patch)
tree04e5b33a51cc1adc62ff33f03b271dfb26744779 /gdb
parentff70bf192527a7aa2ad83cb5520f0a0dc520d6f1 (diff)
downloadgdb-df2066fb704c5981aee6a0505fe9eef874ed23a7.tar.gz
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.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog7
-rw-r--r--gdb/expression.h2
-rw-r--r--gdb/gdbtypes.h2
-rw-r--r--gdb/printcmd.c2
4 files changed, 10 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 17001c63f60..0a8d16941e6 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -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.
diff --git a/gdb/expression.h b/gdb/expression.h
index 60e61d97f03..da95fcbcf62 100644
--- a/gdb/expression.h
+++ b/gdb/expression.h
@@ -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
diff --git a/gdb/gdbtypes.h b/gdb/gdbtypes.h
index 5a079bf4ae0..10466973f7e 100644
--- a/gdb/gdbtypes.h
+++ b/gdb/gdbtypes.h
@@ -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 *);
diff --git a/gdb/printcmd.c b/gdb/printcmd.c
index c7b0ffb1b3e..5196ef049b6 100644
--- a/gdb/printcmd.c
+++ b/gdb/printcmd.c
@@ -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;