From: Bart Van Assche Date: Thu, 3 Jul 2008 09:11:41 +0000 (+0000) Subject: Removed a cast. X-Git-Tag: svn/VALGRIND_3_4_0~387 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1078e2c768b2a872ae03c0b8a5950e814e510f1e;p=thirdparty%2Fvalgrind.git Removed a cast. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8340 --- diff --git a/exp-omega/o_main.c b/exp-omega/o_main.c index f3693c9f6c..1551e09d1a 100644 --- a/exp-omega/o_main.c +++ b/exp-omega/o_main.c @@ -1632,7 +1632,7 @@ static void o_doLeakReport(MemBlock *mb) VG_(pp_ExeContext)(mb->leaked); VG_(message)(Vg_UserMsg, - " Block at %p allocated", (void*)(mb->hdr.key)); + " Block at %#lx allocated", mb->hdr.key); VG_(pp_ExeContext)(mb->where); VG_(message)(Vg_UserMsg,""); }