From acdde5adaa2211aa771aed2e041abbeca405e5fd Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Mon, 14 Feb 2011 10:28:39 +0000 Subject: [PATCH] Merge from trunk, r11514 (place the closing on the correct stream) git-svn-id: svn://svn.valgrind.org/valgrind/branches/VALGRIND_3_6_BRANCH@11547 --- coregrind/m_errormgr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/coregrind/m_errormgr.c b/coregrind/m_errormgr.c index 573f4277a2..96638e55e3 100644 --- a/coregrind/m_errormgr.c +++ b/coregrind/m_errormgr.c @@ -1114,7 +1114,7 @@ static void load_one_suppressions_file ( Char* filename ) // Check it's not a directory. if (VG_(is_dir)( filename )) { if (VG_(clo_xml)) - VG_(umsg)("\n"); + VG_(printf_xml)("\n"); VG_(umsg)("FATAL: suppressions file \"%s\" is a directory\n", filename ); VG_(exit)(1); } @@ -1123,7 +1123,7 @@ static void load_one_suppressions_file ( Char* filename ) sres = VG_(open)( filename, VKI_O_RDONLY, 0 ); if (sr_isError(sres)) { if (VG_(clo_xml)) - VG_(umsg)("\n"); + VG_(printf_xml)("\n"); VG_(umsg)("FATAL: can't open suppressions file \"%s\"\n", filename ); VG_(exit)(1); } @@ -1275,7 +1275,7 @@ static void load_one_suppressions_file ( Char* filename ) syntax_error: if (VG_(clo_xml)) - VG_(umsg)("\n"); + VG_(printf_xml)("\n"); VG_(umsg)("FATAL: in suppressions file \"%s\" near line %d:\n", filename, lineno ); VG_(umsg)(" %s\n", err_str ); -- 2.47.2