urlmon/tests: Fix two ok() trailing '\n's.

Francois Gouget fgouget at free.fr
Thu Jul 9 02:51:58 CDT 2009


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

diff --git a/dlls/urlmon/tests/sec_mgr.c b/dlls/urlmon/tests/sec_mgr.c
index 3fb7fa6..e405db5 100644
--- a/dlls/urlmon/tests/sec_mgr.c
+++ b/dlls/urlmon/tests/sec_mgr.c
@@ -294,12 +294,12 @@ static void test_CoInternetCreateZoneManager(void)
         return;
 
     hr = IInternetZoneManager_QueryInterface(zonemgr, &IID_IUnknown, (void **) &punk);
-    ok(SUCCEEDED(hr), "got 0x%x with %p (expected Success)n", hr, punk);
+    ok(SUCCEEDED(hr), "got 0x%x with %p (expected Success)\n", hr, punk);
     if (punk)
         IUnknown_Release(punk);
 
     hr = IInternetZoneManager_QueryInterface(zonemgr, &IID_IInternetZoneManager, (void **) &punk);
-    ok(SUCCEEDED(hr), "got 0x%x with %p (expected Success)n", hr, punk);
+    ok(SUCCEEDED(hr), "got 0x%x with %p (expected Success)\n", hr, punk);
     if (punk)
         IUnknown_Release(punk);
 
-- 
1.6.3.1



More information about the wine-patches mailing list