print the values from the dynamic section.
+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.
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;