aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2017-07-21 15:56:54 +0100
committerNick Clifton <nickc@redhat.com>2017-07-21 15:56:54 +0100
commit13bace4ab963a56102d8646cb16a8ec505536107 (patch)
tree48eb5caeaceddb3b2fc0d39855681bfdb3edd22f /binutils
parentb57e815ca1e75b7897caa99c2d351f11a543c4fe (diff)
downloadfsf-binutils-gdb-13bace4ab963a56102d8646cb16a8ec505536107.zip
fsf-binutils-gdb-13bace4ab963a56102d8646cb16a8ec505536107.tar.gz
fsf-binutils-gdb-13bace4ab963a56102d8646cb16a8ec505536107.tar.bz2
Fix typo in warning message.
PR 21810 * dwarf.c (display_gdb_index): Fix typo in warning message.
Diffstat (limited to 'binutils')
-rw-r--r--binutils/dwarf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/dwarf.c b/binutils/dwarf.c
index f8e24cb2..d2fc799 100644
--- a/binutils/dwarf.c
+++ b/binutils/dwarf.c
@@ -8158,7 +8158,7 @@ display_gdb_index (struct dwarf_section *section,
/* PR 17531: file: 18a47d3d. */
if (symbol_table_offset < address_table_offset)
{
- warn (_("Symbol table offset (%xl) is less then Address table offset (%x)\n"),
+ warn (_("Symbol table offset (%x) is less then Address table offset (%x)\n"),
symbol_table_offset, address_table_offset);
return 0;
}