diff options
Diffstat (limited to 'bfd/ecoff.c')
-rw-r--r-- | bfd/ecoff.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/ecoff.c b/bfd/ecoff.c index 511d88b..a4edf7a 100644 --- a/bfd/ecoff.c +++ b/bfd/ecoff.c @@ -1389,7 +1389,7 @@ _bfd_ecoff_print_symbol (bfd *abfd, (*debug_swap->swap_sym_in) (abfd, ecoffsymbol (symbol)->native, &ecoff_sym); fprintf (file, "ecoff local "); - fprintf_vma (file, (bfd_vma) ecoff_sym.value); + bfd_fprintf_vma (abfd, file, ecoff_sym.value); fprintf (file, " %x %x", (unsigned) ecoff_sym.st, (unsigned) ecoff_sym.sc); } @@ -1400,7 +1400,7 @@ _bfd_ecoff_print_symbol (bfd *abfd, (*debug_swap->swap_ext_in) (abfd, ecoffsymbol (symbol)->native, &ecoff_ext); fprintf (file, "ecoff extern "); - fprintf_vma (file, (bfd_vma) ecoff_ext.asym.value); + bfd_fprintf_vma (abfd, file, ecoff_ext.asym.value); fprintf (file, " %x %x", (unsigned) ecoff_ext.asym.st, (unsigned) ecoff_ext.asym.sc); } @@ -1443,7 +1443,7 @@ _bfd_ecoff_print_symbol (bfd *abfd, fprintf (file, "[%3d] %c ", pos, type); - fprintf_vma (file, (bfd_vma) ecoff_ext.asym.value); + bfd_fprintf_vma (abfd, file, ecoff_ext.asym.value); fprintf (file, " st %x sc %x indx %x %c%c%c %s", (unsigned) ecoff_ext.asym.st, (unsigned) ecoff_ext.asym.sc, |