From a4f4fd2a77371a8f99e30a92aa3623db5e6733b0 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Thu, 9 Jul 2009 09:51:58 +0200 Subject: [PATCH] urlmon/tests: Fix two ok() trailing '\n's. --- dlls/urlmon/tests/sec_mgr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/urlmon/tests/sec_mgr.c b/dlls/urlmon/tests/sec_mgr.c index 07d409e1337..a6fb6bb9189 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);