* elf.c (_bfd_elf_print_private_bfd_data): Use bfd_fprintf_vma to
authorAdam Nemet <anemet@caviumnetworks.com>
Fri, 21 Mar 2008 16:22:51 +0000 (16:22 +0000)
committerAdam Nemet <anemet@caviumnetworks.com>
Fri, 21 Mar 2008 16:22:51 +0000 (16:22 +0000)
print the values from the dynamic section.

bfd/ChangeLog
bfd/elf.c

index 333cd1f..37aaa38 100644 (file)
@@ -1,3 +1,8 @@
+2008-03-21  Adam Nemet  <anemet@caviumnetworks.com>
+
+       * elf.c (_bfd_elf_print_private_bfd_data): Use bfd_fprintf_vma to
+       print the values from the dynamic section.
+
 2008-03-20  Richard Sandiford  <rsandifo@nildram.co.uk>
 
        * elfxx-mips.c (MIPS_ELF_GNU_GOT1_MASK): New macro.
index 36515ce..f1019d6 100644 (file)
--- a/bfd/elf.c
+++ b/bfd/elf.c
@@ -1293,7 +1293,10 @@ _bfd_elf_print_private_bfd_data (bfd *abfd, void *farg)
 
          fprintf (f, "  %-20s ", name);
          if (! stringp)
-           fprintf (f, "0x%lx", (unsigned long) dyn.d_un.d_val);
+           {
+             fprintf (f, "0x");
+             bfd_fprintf_vma (abfd, f, dyn.d_un.d_val);
+           }
          else
            {
              const char *string;