diff options
Diffstat (limited to 'bfd/xcofflink.c')
-rw-r--r-- | bfd/xcofflink.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bfd/xcofflink.c b/bfd/xcofflink.c index 8121c7e..d80e98d 100644 --- a/bfd/xcofflink.c +++ b/bfd/xcofflink.c @@ -1499,7 +1499,7 @@ xcoff_link_add_symbols (bfd *abfd, struct bfd_link_info *info) { _bfd_error_handler /* xgettext:c-format */ - (_("%B: bad XTY_ER symbol `%s': class %d scnum %d scnlen %d"), + (_("%B: bad XTY_ER symbol `%s': class %d scnum %d scnlen %Ld"), abfd, name, sym.n_sclass, sym.n_scnum, aux.x_csect.x_scnlen.l); bfd_set_error (bfd_error_bad_value); @@ -1529,7 +1529,7 @@ xcoff_link_add_symbols (bfd *abfd, struct bfd_link_info *info) { _bfd_error_handler /* xgettext:c-format */ - (_("%B: XMC_TC0 symbol `%s' is class %d scnlen %d"), + (_("%B: XMC_TC0 symbol `%s' is class %d scnlen %Ld"), abfd, name, sym.n_sclass, aux.x_csect.x_scnlen.l); bfd_set_error (bfd_error_bad_value); goto error_return; @@ -2105,7 +2105,7 @@ xcoff_link_add_symbols (bfd *abfd, struct bfd_link_info *info) { _bfd_error_handler /* xgettext:c-format */ - (_("%B: reloc %s:%d not in csect"), + (_("%B: reloc %s:%Ld not in csect"), abfd, o->name, i); bfd_set_error (bfd_error_bad_value); goto error_return; @@ -5112,9 +5112,9 @@ xcoff_find_tc0 (bfd *output_bfd, struct xcoff_final_link_info *flinfo) if (best_address > toc_start + 0x8000) { _bfd_error_handler - (_("TOC overflow: 0x%lx > 0x10000; try -mminimal-toc " + (_("TOC overflow: %#Lx > 0x10000; try -mminimal-toc " "when compiling"), - (unsigned long) (toc_end - toc_start)); + toc_end - toc_start); bfd_set_error (bfd_error_file_too_big); return FALSE; } |