oleaut32/tests: Add a trailing '\n' to a couple of ok() calls.

Francois Gouget fgouget at free.fr
Wed May 29 00:45:54 CDT 2013


---
 dlls/oleaut32/tests/typelib.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/oleaut32/tests/typelib.c b/dlls/oleaut32/tests/typelib.c
index 32d8a04..0bc1854 100644
--- a/dlls/oleaut32/tests/typelib.c
+++ b/dlls/oleaut32/tests/typelib.c
@@ -3410,14 +3410,14 @@ static void test_TypeInfo2_GetContainingTypeLib(void)
     Index = 888;
     hr = ITypeInfo2_GetContainingTypeLib(ti2, &tl, &Index);
     ok_ole_success(hr, ITypeInfo2_GetContainingTypeLib);
-    ok(tl != NULL, "ITypeInfo2_GetContainingTypeLib returned empty TypeLib");
+    ok(tl != NULL, "ITypeInfo2_GetContainingTypeLib returned empty TypeLib\n");
     ok(Index == 0, "ITypeInfo2_GetContainingTypeLib returned Index = %u, expected 0\n", Index);
     if(tl) ITypeLib_Release(tl);
 
     tl = NULL;
     hr = ITypeInfo2_GetContainingTypeLib(ti2, &tl, NULL);
     ok_ole_success(hr, ITypeInfo2_GetContainingTypeLib);
-    ok(tl != NULL, "ITypeInfo2_GetContainingTypeLib returned empty TypeLib");
+    ok(tl != NULL, "ITypeInfo2_GetContainingTypeLib returned empty TypeLib\n");
     if(tl) ITypeLib_Release(tl);
 
     Index = 888;
-- 
1.7.10.4



More information about the wine-patches mailing list