diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 578fc0d85c5..8c12a495c55 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 5cada3704eb..386cc17f7c5 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; } }