diff options
author | Alan Modra <amodra@gmail.com> | 2017-04-13 13:24:18 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2017-04-13 17:07:25 +0930 |
commit | 63a5468afa8e2cf8843d87b99e780e9266b31014 (patch) | |
tree | 95128d94cb7d7460ab81bc38a268c2ef463c1272 /bfd/elfxx-mips.c | |
parent | dae82561a286618acf097ad9894eafba98377f66 (diff) | |
download | gdb-63a5468afa8e2cf8843d87b99e780e9266b31014.zip gdb-63a5468afa8e2cf8843d87b99e780e9266b31014.tar.gz gdb-63a5468afa8e2cf8843d87b99e780e9266b31014.tar.bz2 |
Wrap long lines
Not a comprehensive change, just some split out from fixes made for
the %A and %B changes.
* coffcode.h: Wrap some overly long _bfd_error_handler args.
* elf.c: Likewise.
* elf32-arm.c: Likewise.
* elf32-i386.c: Likewise.
* elf32-mep.c: Likewise.
* elf64-ia64-vms.c: Likewise.
* elf64-x86-64.c: Likewise.
* elflink.c: Likewise.
* elfnn-ia64.c: Likewise.
* elfxx-mips.c: Likewise.
Diffstat (limited to 'bfd/elfxx-mips.c')
-rw-r--r-- | bfd/elfxx-mips.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c index 08151c1..992ee06 100644 --- a/bfd/elfxx-mips.c +++ b/bfd/elfxx-mips.c @@ -7128,7 +7128,8 @@ _bfd_mips_elf_section_processing (bfd *abfd, Elf_Internal_Shdr *hdr) { _bfd_error_handler /* xgettext:c-format */ - (_("%B: Warning: bad `%s' option size %u smaller than its header"), + (_("%B: Warning: bad `%s' option size %u smaller than" + " its header"), abfd, MIPS_ELF_OPTIONS_SECTION_NAME (abfd), intopt.size); break; } @@ -7362,7 +7363,8 @@ _bfd_mips_elf_section_from_shdr (bfd *abfd, { _bfd_error_handler /* xgettext:c-format */ - (_("%B: Warning: bad `%s' option size %u smaller than its header"), + (_("%B: Warning: bad `%s' option size %u smaller than" + " its header"), abfd, MIPS_ELF_OPTIONS_SECTION_NAME (abfd), intopt.size); break; } @@ -8875,7 +8877,8 @@ _bfd_mips_elf_check_relocs (bfd *abfd, struct bfd_link_info *info, howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, r_type, FALSE); _bfd_error_handler /* xgettext:c-format */ - (_("%B: relocation %s against `%s' can not be used when making a shared object; recompile with -fPIC"), + (_("%B: relocation %s against `%s' can not be used" + " when making a shared object; recompile with -fPIC"), abfd, howto->name, (h) ? h->root.root.string : "a local symbol"); bfd_set_error (bfd_error_bad_value); |