From: Maciej W. Rozycki Date: Wed, 28 Mar 2018 21:42:17 +0000 (+0100) Subject: BFD/PA: Correct formatting in `elf_hppa_info_to_howto_rel' X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d81270c36986a4e470b0017bad5f415a2f916616;p=binutils-gdb.git BFD/PA: Correct formatting in `elf_hppa_info_to_howto_rel' Wrap the `_bfd_error_handler' call to fit in 80 columns, fixing commit e8f5af786c76 ("Use standardized error message for unrecognized relocs."). bfd/ * elf-hppa.h (elf_hppa_info_to_howto_rel): Correct `_bfd_error_handler' call formatting. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index daad8188b9b..ca8ea9f5495 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2018-03-28 Maciej W. Rozycki + + * elf-hppa.h (elf_hppa_info_to_howto_rel): Correct + `_bfd_error_handler' call formatting. + 2018-03-28 Maciej W. Rozycki * elf32-mips.c (mips_info_to_howto_rel): Call diff --git a/bfd/elf-hppa.h b/bfd/elf-hppa.h index 95ac96c7345..a498c596849 100644 --- a/bfd/elf-hppa.h +++ b/bfd/elf-hppa.h @@ -1051,7 +1051,8 @@ elf_hppa_info_to_howto_rel (bfd *abfd, if (r_type >= (unsigned int) R_PARISC_UNIMPLEMENTED) { /* xgettext:c-format */ - _bfd_error_handler (_("%pB: unsupported relocation type %#x"), abfd, r_type); + _bfd_error_handler (_("%pB: unsupported relocation type %#x"), + abfd, r_type); bfd_set_error (bfd_error_bad_value); return FALSE; }