|
From: <sv...@va...> - 2009-04-29 05:39:08
|
Author: njn
Date: 2009-04-29 06:39:00 +0100 (Wed, 29 Apr 2009)
New Revision: 9679
Log:
Merged r9678 (removed a compile warning) from the DARWIN branch.
Modified:
trunk/coregrind/m_debuginfo/readpdb.c
Modified: trunk/coregrind/m_debuginfo/readpdb.c
===================================================================
--- trunk/coregrind/m_debuginfo/readpdb.c 2009-04-29 05:38:06 UTC (rev 9678)
+++ trunk/coregrind/m_debuginfo/readpdb.c 2009-04-29 05:39:00 UTC (rev 9679)
@@ -2189,11 +2189,11 @@
if (VG_(clo_verbosity) > 1) {
VG_(message)(Vg_DebugMsg,
- "rx_map: avma %#lx size %7lu foff %lu\n",
- di->rx_map_avma, di->rx_map_size, di->rx_map_foff);
+ "rx_map: avma %#lx size %7lu foff %llu\n",
+ di->rx_map_avma, di->rx_map_size, (Off64T)di->rx_map_foff);
VG_(message)(Vg_DebugMsg,
- "rw_map: avma %#lx size %7lu foff %lu\n",
- di->rw_map_avma, di->rw_map_size, di->rw_map_foff);
+ "rw_map: avma %#lx size %7lu foff %llu\n",
+ di->rw_map_avma, di->rw_map_size, (Off64T)di->rw_map_foff);
VG_(message)(Vg_DebugMsg,
" text: avma %#lx svma %#lx size %7lu bias %#lx\n",
|