|
From: <sv...@va...> - 2009-04-29 05:38:25
|
Author: njn
Date: 2009-04-29 06:38:06 +0100 (Wed, 29 Apr 2009)
New Revision: 9678
Log:
Remove a compile warning.
Modified:
branches/DARWIN/coregrind/m_debuginfo/readpdb.c
Modified: branches/DARWIN/coregrind/m_debuginfo/readpdb.c
===================================================================
--- branches/DARWIN/coregrind/m_debuginfo/readpdb.c 2009-04-29 05:08:15 UTC (rev 9677)
+++ branches/DARWIN/coregrind/m_debuginfo/readpdb.c 2009-04-29 05:38:06 UTC (rev 9678)
@@ -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",
|