* readelf.c (print_vma): Typo fix.
authorAlan Modra <amodra@gmail.com>
Mon, 28 Jul 2008 04:14:40 +0000 (04:14 +0000)
committerAlan Modra <amodra@gmail.com>
Mon, 28 Jul 2008 04:14:40 +0000 (04:14 +0000)
binutils/ChangeLog
binutils/readelf.c

index 3ca5ad9..c902049 100644 (file)
@@ -1,5 +1,9 @@
 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
        * readelf.c (print_dec_vma, print_hex_vma): Delete.
        (print_vma): Use BFD_VMA_FMT.
index 236816d..5f3946e 100644 (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;