|
From: <sv...@va...> - 2008-06-30 08:50:03
|
Author: bart
Date: 2008-06-30 09:50:07 +0100 (Mon, 30 Jun 2008)
New Revision: 8312
Log:
Removed a cast and changed format specifier from %p into %#lx.
Modified:
branches/FORMATCHECK/exp-omega/o_main.c
Modified: branches/FORMATCHECK/exp-omega/o_main.c
===================================================================
--- branches/FORMATCHECK/exp-omega/o_main.c 2008-06-30 08:42:58 UTC (rev 8311)
+++ branches/FORMATCHECK/exp-omega/o_main.c 2008-06-30 08:50:07 UTC (rev 8312)
@@ -1632,7 +1632,7 @@
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,"");
}
|