comcat/tests: Add a '\n' to a pair of ok() calls.

Francois Gouget fgouget at free.fr
Sat Mar 5 04:51:04 CST 2011


---
 dlls/comcat/tests/comcat.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/comcat/tests/comcat.c b/dlls/comcat/tests/comcat.c
index cf0b7c1..f78e234 100644
--- a/dlls/comcat/tests/comcat.c
+++ b/dlls/comcat/tests/comcat.c
@@ -104,7 +104,7 @@ static void do_enum(void)
 	ok_ole_success(hr,"ICatInformation_EnumClassesOfCategories");
 
 	hr = IEnumGUID_Next(pIEnum,1,the_guid, &fetched);
-	ok (hr == S_FALSE,"Expected S_FALSE, got 0x%08x", hr);
+	ok (hr == S_FALSE,"Expected S_FALSE, got 0x%08x\n", hr);
 	ok (fetched == 0,"Fetched wrong number of guids %u\n",fetched);
 	IEnumGUID_Release(pIEnum);
 
@@ -114,7 +114,7 @@ static void do_enum(void)
             ok_ole_success(hr,"ICatInformation_EnumClassesOfCategories");
 
             hr = IEnumGUID_Next(pIEnum,1,the_guid, &fetched);
-            ok (hr == S_OK,"Expected S_OK, got 0x%08x", hr);
+            ok (hr == S_OK,"Expected S_OK, got 0x%08x\n", hr);
             ok (fetched == 1,"Fetched wrong number of guids %u\n",fetched);
             ok (IsEqualGUID(the_guid,&wanted_guid),"Guids do not match\n");
 
-- 
1.7.2.3




More information about the wine-patches mailing list