* readelf.c (print_vma): Typo fix.

This commit is contained in:
Alan Modra 2008-07-28 04:14:40 +00:00
parent 14a9197011
commit 437c2fb7a1
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-07-28 Alan Modra <amodra@bigpond.net.au>
* readelf.c (print_vma): Typo fix.
2008-07-28 Alan Modra <amodra@bigpond.net.au>
PR 6769

View File

@ -387,7 +387,7 @@ print_vma (bfd_vma vma, print_mode mode)
case LONG_HEX:
#ifdef BFD64
if (is_32bit_elf)
return nc + printf ("%08.8" BFD_VMA_FMT "x", vma);
return nc + printf ("%8.8" BFD_VMA_FMT "x", vma);
#endif
printf_vma (vma);
return nc + 16;