|
From: <sv...@va...> - 2009-09-03 10:30:11
|
Author: sewardj
Date: 2009-09-03 11:29:57 +0100 (Thu, 03 Sep 2009)
New Revision: 10881
Log:
Fix inconsistent closing of an <hthreadid> tag (Ashley Pittman).
Modified:
trunk/helgrind/hg_errors.c
Modified: trunk/helgrind/hg_errors.c
===================================================================
--- trunk/helgrind/hg_errors.c 2009-08-31 08:48:23 UTC (rev 10880)
+++ trunk/helgrind/hg_errors.c 2009-09-03 10:29:57 UTC (rev 10881)
@@ -591,7 +591,7 @@
if (VG_(clo_xml)) {
VG_(printf_xml)("<announcethread>\n");
- VG_(printf_xml)(" <hthreadid>%d</threadid>\n", thr->errmsg_index);
+ VG_(printf_xml)(" <hthreadid>%d</hthreadid>\n", thr->errmsg_index);
if (thr->errmsg_index == 1) {
tl_assert(thr->created_at == NULL);
VG_(printf_xml)(" <isrootthread></isrootthread>\n");
|