diff options
author | Doug Evans <dje@google.com> | 2013-08-09 17:39:38 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2013-08-09 17:39:38 +0000 |
commit | c0cd8254636caeec480710218ae639b7a077c534 (patch) | |
tree | 0be3b11465fd330416955b5b3a279e779c39bb05 /gdb | |
parent | 24a550149d4e29a9285b420d27bc0b2b487b802a (diff) | |
download | gdb-c0cd8254636caeec480710218ae639b7a077c534.zip gdb-c0cd8254636caeec480710218ae639b7a077c534.tar.gz gdb-c0cd8254636caeec480710218ae639b7a077c534.tar.bz2 |
(create_addrmap_from_index): Use hex_string instead of pulongest in previous
patch.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/dwarf2read.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index 54a6dfb..d08e8b8 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -2574,7 +2574,7 @@ create_addrmap_from_index (struct objfile *objfile, struct mapped_index *index) { complaint (&symfile_complaints, _(".gdb_index address table has invalid range (%s - %s)"), - pulongest (lo), pulongest (hi)); + hex_string (lo), hex_string (hi)); continue; } |