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

Alexandre Julliard julliard at winehq.org
Mon Mar 7 12:22:44 CST 2011


Module: wine
Branch: master
Commit: 4c89a83a5a98e9b6b2d9767a8882bd9015451d78
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=4c89a83a5a98e9b6b2d9767a8882bd9015451d78

Author: Francois Gouget <fgouget at free.fr>
Date:   Sat Mar  5 11:51:04 2011 +0100

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

---

 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");
 




More information about the wine-cvs mailing list