diff options
author | Nick Clifton <nickc@redhat.com> | 2017-07-21 15:56:54 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2017-07-21 15:56:54 +0100 |
commit | 13bace4ab963a56102d8646cb16a8ec505536107 (patch) | |
tree | 48eb5caeaceddb3b2fc0d39855681bfdb3edd22f /binutils | |
parent | b57e815ca1e75b7897caa99c2d351f11a543c4fe (diff) | |
download | gdb-13bace4ab963a56102d8646cb16a8ec505536107.zip gdb-13bace4ab963a56102d8646cb16a8ec505536107.tar.gz 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.c | 2 |
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; } |