X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=bfd%2Faout-cris.c;h=feed5ed585e1553b091b66a0ee5a0f5c9676f32d;hb=refs%2Fheads%2Fsandbox%2Fvbarinov%2Ftizen_6_base;hp=59ef6db543d326390567d23725852dbdfe829541;hpb=6f2750feaf2827ef8a1a0a5b2f90c1e9a6cabbd1;p=external%2Fbinutils.git diff --git a/bfd/aout-cris.c b/bfd/aout-cris.c index 59ef6db..feed5ed 100644 --- a/bfd/aout-cris.c +++ b/bfd/aout-cris.c @@ -1,5 +1,5 @@ /* BFD backend for CRIS a.out binaries. - Copyright (C) 2000-2016 Free Software Foundation, Inc. + Copyright (C) 2000-2019 Free Software Foundation, Inc. Contributed by Axis Communications AB. Written by Hans-Peter Nilsson. @@ -24,7 +24,7 @@ functions. Beware; some of the information there is outdated. */ #define N_HEADER_IN_TEXT(x) 0 -#define N_TXTOFF(x) 32 +#define N_TXTOFF(x) 32 #define ENTRY_CAN_BE_ZERO #define TEXT_START_ADDR 0 @@ -196,8 +196,9 @@ MY (swap_ext_reloc_out) (bfd *abfd, We may change this later, but assert this for the moment. */ if (r_type > 2) { - (*_bfd_error_handler) (_("%s: Invalid relocation type exported: %d"), - bfd_get_filename (abfd), r_type); + /* xgettext:c-format */ + _bfd_error_handler (_("%pB: unsupported relocation type exported: %#x"), + abfd, r_type); bfd_set_error (bfd_error_wrong_format); } @@ -239,8 +240,9 @@ MY (swap_ext_reloc_in) (bfd *abfd, if (r_type > 2) { - (*_bfd_error_handler) (_("%B: Invalid relocation type imported: %d"), - abfd, r_type); + /* xgettext:c-format */ + _bfd_error_handler (_("%pB: unsupported relocation type imported: %#x"), + abfd, r_type); bfd_set_error (bfd_error_wrong_format); } @@ -249,8 +251,9 @@ MY (swap_ext_reloc_in) (bfd *abfd, if (r_extern && r_index > symcount) { - (*_bfd_error_handler) - (_("%B: Bad relocation record imported: %d"), abfd, r_index); + _bfd_error_handler + /* xgettext:c-format */ + (_("%pB: bad relocation record imported: %d"), abfd, r_index); bfd_set_error (bfd_error_wrong_format);