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/elf-properties.c | |
parent | 537616aaeb44bc698af9848987e7c8e96d550595 (diff) | |
download | gdb-e4097f5ee55a0d14a6213bccb9da39d4878714c8.zip gdb-e4097f5ee55a0d14a6213bccb9da39d4878714c8.tar.gz 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/elf-properties.c')
-rw-r--r-- | bfd/elf-properties.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bfd/elf-properties.c b/bfd/elf-properties.c index 04ef536..048ea9c 100644 --- a/bfd/elf-properties.c +++ b/bfd/elf-properties.c @@ -88,7 +88,7 @@ _bfd_elf_parse_gnu_properties (bfd *abfd, Elf_Internal_Note *note) { bad_size: _bfd_error_handler - (_("warning: %B: corrupt GNU_PROPERTY_TYPE (%ld) size: %#lx\n"), + (_("warning: %B: corrupt GNU_PROPERTY_TYPE (%ld) size: %#lx"), abfd, note->type, note->descsz); return FALSE; } @@ -104,7 +104,7 @@ bad_size: if ((ptr + datasz) > ptr_end) { _bfd_error_handler - (_("warning: %B: corrupt GNU_PROPERTY_TYPE (%ld) type (0x%x) datasz: 0x%x\n"), + (_("warning: %B: corrupt GNU_PROPERTY_TYPE (%ld) type (0x%x) datasz: 0x%x"), abfd, note->type, type, datasz); /* Clear all properties. */ elf_properties (abfd) = NULL; @@ -143,7 +143,7 @@ bad_size: if (datasz != align_size) { _bfd_error_handler - (_("warning: %B: corrupt stack size: 0x%x\n"), + (_("warning: %B: corrupt stack size: 0x%x"), abfd, datasz); /* Clear all properties. */ elf_properties (abfd) = NULL; @@ -161,7 +161,7 @@ bad_size: if (datasz != 0) { _bfd_error_handler - (_("warning: %B: corrupt no copy on protected size: 0x%x\n"), + (_("warning: %B: corrupt no copy on protected size: 0x%x"), abfd, datasz); /* Clear all properties. */ elf_properties (abfd) = NULL; @@ -177,7 +177,7 @@ bad_size: } _bfd_error_handler - (_("warning: %B: unsupported GNU_PROPERTY_TYPE (%ld) type: 0x%x\n"), + (_("warning: %B: unsupported GNU_PROPERTY_TYPE (%ld) type: 0x%x"), abfd, note->type, type); next: |