From: Jan Kratochvil Date: Sun, 9 Jul 2017 18:52:18 +0000 (+0200) Subject: DWARF-5: Fix error message typo. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=14357de15f6594468950d17dbaac8da0ab05063c;p=deliverable%2Fbinutils-gdb.git DWARF-5: Fix error message typo. binutils/ 2017-07-09 Rafael Fontenelle * dwarf.c (display_formatted_table): Fix error message typo. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 578fc0d85c..8c12a495c5 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2017-07-09 Rafael Fontenelle + + * dwarf.c (display_formatted_table): Fix error message typo. + 2017-07-07 John Baldwin * readelf.c (get_freebsd_elfcore_note_type): Handle diff --git a/binutils/dwarf.c b/binutils/dwarf.c index 5cada3704e..386cc17f7c 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -3085,7 +3085,7 @@ display_formatted_table (unsigned char *data, data += bytes_read; if (data == end) { - warn (_("Corrupt %s entry format table entry\n"), what); + warn (_("Corrupt %s format table entry\n"), what); return data; } }