* bfd/coff-rs6000.c (READ20): Use bfd_scan_vma.

This commit is contained in:
Aldy Hernandez 2002-01-08 00:28:36 +00:00
parent 435ad15963
commit 1dba4cb4ba
2 changed files with 5 additions and 1 deletions

View 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

View 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)