diff options
author | Maciej W. Rozycki <macro@imgtec.com> | 2017-02-02 16:44:09 +0000 |
---|---|---|
committer | Maciej W. Rozycki <macro@imgtec.com> | 2017-02-02 22:17:42 +0000 |
commit | 8f56d4fd28b887cc709524b1993c9da4c64b0696 (patch) | |
tree | 21c889fc4af36a309a8e4d4736ef47a706843032 /bfd/elflink.c | |
parent | 7320133163c796d187350013ddf65fcb5752da9e (diff) | |
download | gdb-8f56d4fd28b887cc709524b1993c9da4c64b0696.zip gdb-8f56d4fd28b887cc709524b1993c9da4c64b0696.tar.gz gdb-8f56d4fd28b887cc709524b1993c9da4c64b0696.tar.bz2 |
BFD: Wrap overlong error handler call line in `elf_gc_sweep'
bfd/
* elflink.c (elf_gc_sweep): Wrap overlong line.
Diffstat (limited to 'bfd/elflink.c')
-rw-r--r-- | bfd/elflink.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bfd/elflink.c b/bfd/elflink.c index 9c71d57..dfebb11 100644 --- a/bfd/elflink.c +++ b/bfd/elflink.c @@ -12944,7 +12944,8 @@ elf_gc_sweep (bfd *abfd, struct bfd_link_info *info) if (info->print_gc_sections && o->size != 0) /* xgettext:c-format */ - _bfd_error_handler (_("Removing unused section '%s' in file '%B'"), sub, o->name); + _bfd_error_handler (_("Removing unused section '%s' in file '%B'"), + sub, o->name); /* But we also have to update some of the relocation info we collected before. */ |