From: schwab Date: Thu, 15 Nov 2001 13:14:09 +0000 (+0000) Subject: * readelf.c: Fix warnings without terminating newline. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=eabafb337c83900c877b558a4cadc01d7b2dd0b2;p=pf3gnuchains%2Fsourceware.git * readelf.c: Fix warnings without terminating newline. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index f99b00c3f9..55894514ad 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2001-11-15 Andreas Schwab + + * readelf.c: Fix warnings without terminating newline. + 2001-11-15 Alan Modra * doc/binutils.texi (objdump): Document ppc -M options. diff --git a/binutils/readelf.c b/binutils/readelf.c index d9b71cd532..fa98f7ab16 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; }