When printing error counts, print the <unique> in the same way that
it is in the error itself.  Otherwise it's totally useless :-)



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4355 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/coregrind/m_errormgr.c b/coregrind/m_errormgr.c
index 50e1ab2..c8b3669 100644
--- a/coregrind/m_errormgr.c
+++ b/coregrind/m_errormgr.c
@@ -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>");