Francois Gouget : urlmon/tests: Fix two ok() trailing '\n's.
Module: wine Branch: master Commit: a4f4fd2a77371a8f99e30a92aa3623db5e6733b0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a4f4fd2a77371a8f99e30a92aa... Author: Francois Gouget <fgouget(a)free.fr> Date: Thu Jul 9 09:51:58 2009 +0200 urlmon/tests: Fix two ok() trailing '\n's. --- 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 07d409e..a6fb6bb 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);
participants (1)
-
Alexandre Julliard