|
From: <sv...@va...> - 2005-08-09 21:50:24
|
Author: sewardj
Date: 2005-08-09 22:50:18 +0100 (Tue, 09 Aug 2005)
New Revision: 4355
Log:
When printing error counts, print the <unique> in the same way that
it is in the error itself. Otherwise it's totally useless :-)
Modified:
trunk/coregrind/m_errormgr.c
Modified: trunk/coregrind/m_errormgr.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- trunk/coregrind/m_errormgr.c 2005-08-09 17:59:26 UTC (rev 4354)
+++ trunk/coregrind/m_errormgr.c 2005-08-09 21:50:18 UTC (rev 4355)
@@ -800,7 +800,7 @@
VG_(message)(
Vg_UserMsg, " <pair> <count>%d</count> "
"<unique>0x%llx</unique> </pair>",
- err->count, Ptr_to_ULong(err)
+ err->count, err->unique
);
}
VG_(message)(Vg_UserMsg, "</errorcounts>");
|