|
From: <sv...@va...> - 2009-05-10 19:48:36
|
Author: sewardj
Date: 2009-05-10 20:48:20 +0100 (Sun, 10 May 2009)
New Revision: 9826
Log:
Make VG_(printf_xml) send output on the XML output channel and not the
normal one. Duh.
Modified:
branches/MESSAGING_TIDYUP/coregrind/m_libcprint.c
Modified: branches/MESSAGING_TIDYUP/coregrind/m_libcprint.c
===================================================================
--- branches/MESSAGING_TIDYUP/coregrind/m_libcprint.c 2009-05-10 19:26:37 UTC (rev 9825)
+++ branches/MESSAGING_TIDYUP/coregrind/m_libcprint.c 2009-05-10 19:48:20 UTC (rev 9826)
@@ -155,7 +155,7 @@
UInt ret;
va_list vargs;
va_start(vargs, format);
- ret = VG_(vprintf)(format, vargs);
+ ret = VG_(vprintf_xml)(format, vargs);
va_end(vargs);
return ret;
}
|