OSDN Git Service

* bfd/coff-rs6000.c (READ20): Use bfd_scan_vma.
authoraldyh <aldyh>
Tue, 8 Jan 2002 00:28:36 +0000 (00:28 +0000)
committeraldyh <aldyh>
Tue, 8 Jan 2002 00:28:36 +0000 (00:28 +0000)
bfd/ChangeLog
bfd/coff-rs6000.c

index fcabcaa..d1ccdbe 100644 (file)
@@ -1,3 +1,7 @@
+2002-01-07  Aldy Hernandez  <aldyh@redhat.com>
+
+       * coff-rs6000.c (READ20): Use bfd_scan_vma.
+
 2002-01-07  Geoffrey Keating  <geoffk@redhat.com>
 
        * elflink.h (elf_link_input_bfd): Don't ask for the merged offset
index 34f2562..2d6d6e9 100644 (file)
@@ -1555,7 +1555,7 @@ static char buff20[XCOFFARMAGBIG_ELEMENT_SIZE + 1];
 #define READ20(d, v) \
   buff20[20] = 0, \
   memcpy (buff20, (d), 20), \
-  (v) = strtoull (buff20, (char **) NULL, 10)
+  (v) = bfd_scan_vma (buff20, (const char **) NULL, 10)
 
 static boolean
 xcoff_write_armap_big (abfd, elength, map, orl_count, stridx)