]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* 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 3ca5ad979c7e2eacbc5108410814c74a9177ad36..c9020498fa71c2048e050ba7567e22049f9c993b 100644 (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
index 236816d72974d678d2718262f24133f1ccbf1ba8..5f3946e41322737ab4d9f8dfb7bfe76571b05b8d 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;