summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2017-07-09 20:52:18 +0200
committerJan Kratochvil <jan.kratochvil@redhat.com>2017-07-09 20:52:18 +0200
commit14357de15f6594468950d17dbaac8da0ab05063c (patch)
tree1bf350dad3bd5ff2d5837f7096cb3bea0d547073
parent266934d1ad029100f4073f9e351f8685ea175b83 (diff)
downloadbinutils-gdb-14357de15f6594468950d17dbaac8da0ab05063c.tar.gz
DWARF-5: Fix error message typo.
binutils/ 2017-07-09 Rafael Fontenelle <rafaelff@gnome.org> * dwarf.c (display_formatted_table): Fix error message typo.
-rw-r--r--binutils/ChangeLog4
-rw-r--r--binutils/dwarf.c2
2 files changed, 5 insertions, 1 deletions
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 <rafaelff@gnome.org>
+
+ * dwarf.c (display_formatted_table): Fix error message typo.
+
2017-07-07 John Baldwin <jhb@FreeBSD.org>
* 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;
}
}