ole32/tests: Add a trailing '\n' to ok() calls.

Francois Gouget fgouget at free.fr
Thu May 22 03:37:43 CDT 2008


---
 dlls/ole32/tests/compobj.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/ole32/tests/compobj.c b/dlls/ole32/tests/compobj.c
index 191424d..24d790a 100644
--- a/dlls/ole32/tests/compobj.c
+++ b/dlls/ole32/tests/compobj.c
@@ -203,19 +203,19 @@ static void test_StringFromGUID2(void)
   int len;
   /* Test corner cases for buffer size */
   len = StringFromGUID2(&CLSID_CDeviceMoniker,str,50);
-  ok(len == 39, "len: %d (expected 39)",len);
+  ok(len == 39, "len: %d (expected 39)\n", len);
   ok(!lstrcmpiW(str, wszCLSID_CDeviceMoniker),"string wan't equal for CLSID_CDeviceMoniker\n");
 
   memset(str,0,sizeof str);
   len = StringFromGUID2(&CLSID_CDeviceMoniker,str,39);
-  ok(len == 39, "len: %d (expected 39)",len);
+  ok(len == 39, "len: %d (expected 39)\n", len);
   ok(!lstrcmpiW(str, wszCLSID_CDeviceMoniker),"string wan't equal for CLSID_CDeviceMoniker\n");
 
   len = StringFromGUID2(&CLSID_CDeviceMoniker,str,38);
-  ok(len == 0, "len: %d (expected 0)",len);
+  ok(len == 0, "len: %d (expected 0)\n", len);
 
   len = StringFromGUID2(&CLSID_CDeviceMoniker,str,30);
-  ok(len == 0, "len: %d (expected 0)",len);
+  ok(len == 0, "len: %d (expected 0)\n", len);
 }
 
 static void test_CoCreateInstance(void)
-- 
1.5.5.1




More information about the wine-patches mailing list