diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2001-11-15 13:14:09 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2001-11-15 13:14:09 +0000 |
commit | e5fb9629ddbf322bdd688a71e9c774936aa24976 (patch) | |
tree | 3c756371c0d120af3644440c2c984bcaaf472683 /binutils | |
parent | 7dc9bd67ad681f9070873f4148bbcda1aa0ea762 (diff) | |
download | gdb-e5fb9629ddbf322bdd688a71e9c774936aa24976.zip gdb-e5fb9629ddbf322bdd688a71e9c774936aa24976.tar.gz gdb-e5fb9629ddbf322bdd688a71e9c774936aa24976.tar.bz2 |
* readelf.c: Fix warnings without terminating newline.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/readelf.c | 18 |
2 files changed, 13 insertions, 9 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index f99b00c..5589451 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2001-11-15 Andreas Schwab <schwab@suse.de> + + * readelf.c: Fix warnings without terminating newline. + 2001-11-15 Alan Modra <amodra@bigpond.net.au> * doc/binutils.texi (objdump): Document ppc -M options. diff --git a/binutils/readelf.c b/binutils/readelf.c index d9b71cd..fa98f7a 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -3566,7 +3566,7 @@ slurp_ia64_unwind_table (file, aux, sec) if (ELF32_ST_TYPE (sym->st_info) != STT_SECTION) { - warn (_("Skipping unexpected symbol type %u"), + warn (_("Skipping unexpected symbol type %u\n"), ELF32_ST_TYPE (sym->st_info)); continue; } @@ -3578,7 +3578,7 @@ slurp_ia64_unwind_table (file, aux, sec) if (ELF64_ST_TYPE (sym->st_info) != STT_SECTION) { - warn (_("Skipping unexpected symbol type %u"), + warn (_("Skipping unexpected symbol type %u\n"), ELF64_ST_TYPE (sym->st_info)); continue; } @@ -3586,7 +3586,7 @@ slurp_ia64_unwind_table (file, aux, sec) if (strncmp (relname, "R_IA64_SEGREL", 13) != 0) { - warn (_("Skipping unexpected relocation type %s"), relname); + warn (_("Skipping unexpected relocation type %s\n"), relname); continue; } @@ -5699,7 +5699,7 @@ process_extended_line_op (data, is_stmt, pointer_size) if (len == 0) { - warn (_("badly formed extended line op encountered!")); + warn (_("badly formed extended line op encountered!\n")); return bytes_read; } @@ -7062,9 +7062,9 @@ read_and_display_attr_value (attribute, form, data, cu_offset, pointer_size) case DW_FORM_strp: if (debug_str == NULL) - warn (_("DW_FORM_strp used but no .debug_str section")); + warn (_("DW_FORM_strp used but no .debug_str section\n")); else if (uvalue >= debug_str_size) - warn (_("DW_FORM_strp %lx points outside of .debug_str section"), + warn (_("DW_FORM_strp %lx points outside of .debug_str section\n"), uvalue); else printf (" %s", debug_str + uvalue); @@ -7075,7 +7075,7 @@ read_and_display_attr_value (attribute, form, data, cu_offset, pointer_size) break; default: - warn (_("Unrecognised form: %d"), form); + warn (_("Unrecognised form: %d\n"), form); break; } @@ -7337,7 +7337,7 @@ display_debug_info (section, start, file) if (ELF32_ST_TYPE (sym->st_info) != STT_SECTION) { - warn (_("Skipping unexpected symbol type %u"), + warn (_("Skipping unexpected symbol type %u\n"), ELF32_ST_TYPE (sym->st_info)); continue; } @@ -7348,7 +7348,7 @@ display_debug_info (section, start, file) if (ELF64_ST_TYPE (sym->st_info) != STT_SECTION) { - warn (_("Skipping unexpected symbol type %u"), + warn (_("Skipping unexpected symbol type %u\n"), ELF64_ST_TYPE (sym->st_info)); continue; } |