diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2017-04-11 15:41:00 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2017-04-11 15:41:00 -0700 |
commit | e4097f5ee55a0d14a6213bccb9da39d4878714c8 (patch) | |
tree | 905da422c2609b547bda90170d795e122738afd7 /bfd/elf64-x86-64.c | |
parent | 537616aaeb44bc698af9848987e7c8e96d550595 (diff) | |
download | fsf-binutils-gdb-e4097f5ee55a0d14a6213bccb9da39d4878714c8.zip fsf-binutils-gdb-e4097f5ee55a0d14a6213bccb9da39d4878714c8.tar.gz fsf-binutils-gdb-e4097f5ee55a0d14a6213bccb9da39d4878714c8.tar.bz2 |
Remove the extra `\n' in warning/error messages
* elf-properties.c (_bfd_elf_parse_gnu_properties): Remove the
extra `\n' in warning/error messages.
* elf32-i386.c (elf_i386_parse_gnu_properties): Likewise.
* elf64-x86-64.c (elf_x86_64_parse_gnu_properties): Likewise.
Diffstat (limited to 'bfd/elf64-x86-64.c')
-rw-r--r-- | bfd/elf64-x86-64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elf64-x86-64.c b/bfd/elf64-x86-64.c index a4048f1..5d3a653 100644 --- a/bfd/elf64-x86-64.c +++ b/bfd/elf64-x86-64.c @@ -6913,8 +6913,8 @@ elf_x86_64_parse_gnu_properties (bfd *abfd, unsigned int type, { _bfd_error_handler ((type == GNU_PROPERTY_X86_ISA_1_USED - ? _("error: %B: <corrupt x86 ISA used size: 0x%x>\n") - : _("error: %B: <corrupt x86 ISA needed size: 0x%x>\n")), + ? _("error: %B: <corrupt x86 ISA used size: 0x%x>") + : _("error: %B: <corrupt x86 ISA needed size: 0x%x>")), abfd, datasz); return property_corrupt; } |