mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +00:00
Fix a second format string error observed whilst building on OSX 10.10.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15564
This commit is contained in:
parent
7540350321
commit
6d6732e9df
@ -2384,15 +2384,15 @@ Bool ML_(read_pdb_debug_info)(
|
||||
const DebugInfoMapping* map = VG_(indexXA)(di->fsm.maps, i);
|
||||
if (map->rx)
|
||||
VG_(dmsg)("LOAD_PDB_DEBUGINFO: "
|
||||
"rx_map: avma %#lx size %7lu foff %ld\n",
|
||||
map->avma, map->size, map->foff);
|
||||
"rx_map: avma %#lx size %7lu foff %lld\n",
|
||||
map->avma, map->size, (Long)map->foff);
|
||||
}
|
||||
for (i = 0; i < VG_(sizeXA)(di->fsm.maps); i++) {
|
||||
const DebugInfoMapping* map = VG_(indexXA)(di->fsm.maps, i);
|
||||
if (map->rw)
|
||||
VG_(dmsg)("LOAD_PDB_DEBUGINFO: "
|
||||
"rw_map: avma %#lx size %7lu foff %ld\n",
|
||||
map->avma, map->size, map->foff);
|
||||
"rw_map: avma %#lx size %7lu foff %lld\n",
|
||||
map->avma, map->size, (Long)map->foff);
|
||||
}
|
||||
|
||||
VG_(dmsg)("LOAD_PDB_DEBUGINFO: "
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user