aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2005-04-10 23:41:32 +0000
committerEric Christopher <echristo@gmail.com>2005-04-10 23:41:32 +0000
commita9fcb2a986e0ff65d325fb85183c5059bbfe0576 (patch)
tree11ca0f7d769b5d6a88f89f1ccb64c8b0f272bef2 /gas
parent21655b03444a72c726075938c0f1759eed36ae29 (diff)
downloadgdb-a9fcb2a986e0ff65d325fb85183c5059bbfe0576.zip
gdb-a9fcb2a986e0ff65d325fb85183c5059bbfe0576.tar.gz
gdb-a9fcb2a986e0ff65d325fb85183c5059bbfe0576.tar.bz2
2005-04-10 Eric Christopher <echristo@redhat.com>
* symbols.c (symbol_X_add_number): Fix warning.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog4
-rw-r--r--gas/symbols.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 9069dd8..c59edd6 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,7 @@
+2005-04-10 Eric Christopher <echristo@redhat.com>
+
+ * symbols.c (symbol_X_add_number): Fix warning.
+
2005-04-10 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-m68k.c (md_begin): Support 64bit host.
diff --git a/gas/symbols.c b/gas/symbols.c
index bf47ebb..c8773f1 100644
--- a/gas/symbols.c
+++ b/gas/symbols.c
@@ -2032,7 +2032,7 @@ symbol_X_add_number (symbolS *s)
return &((struct local_symbol *) s)->lsy_value;
#endif
- return &s->sy_value.X_add_number;
+ return (valueT *)&s->sy_value.X_add_number;
}
/* Set the value of SYM to the current position in the current segment. */