OSDN Git Service

2005-04-10 Eric Christopher <echristo@redhat.com>
authorechristo <echristo>
Sun, 10 Apr 2005 23:41:32 +0000 (23:41 +0000)
committerechristo <echristo>
Sun, 10 Apr 2005 23:41:32 +0000 (23:41 +0000)
        * symbols.c (symbol_X_add_number): Fix warning.

gas/ChangeLog
gas/symbols.c

index 9069dd8..c59edd6 100644 (file)
@@ -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.
index bf47ebb..c8773f1 100644 (file)
@@ -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.  */