* bfd/coff-rs6000.c (READ20): Use bfd_scan_vma.
This commit is contained in:
parent
435ad15963
commit
1dba4cb4ba
2 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue