Francois Gouget : advapi32/tests: Add the trailing '\n' to an ok() call.

Alexandre Julliard julliard at winehq.org
Wed Jan 23 14:36:46 CST 2008


Module: wine
Branch: master
Commit: 269cb45f2571e1afa4fb4e0c6b8612c6ef40a321
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=269cb45f2571e1afa4fb4e0c6b8612c6ef40a321

Author: Francois Gouget <fgouget at free.fr>
Date:   Wed Jan 23 15:16:40 2008 +0100

advapi32/tests: Add the trailing '\n' to an ok() call.

---

 dlls/advapi32/tests/service.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/advapi32/tests/service.c b/dlls/advapi32/tests/service.c
index 38df62b..f0b7867 100644
--- a/dlls/advapi32/tests/service.c
+++ b/dlls/advapi32/tests/service.c
@@ -950,7 +950,7 @@ static void test_queryconfig2(void)
     ret = pQueryServiceConfig2A(svc_handle, SERVICE_CONFIG_DESCRIPTION,buffer,sizeof(SERVICE_DESCRIPTIONA),&needed);
     ok(ret, "expected QueryServiceConfig2A to succeed\n");
     ok(needed == sizeof(SERVICE_DESCRIPTIONA), "expected needed to be %d, got %d\n", sizeof(SERVICE_DESCRIPTIONA), needed);
-    ok(!pConfig->lpDescription, "expected lpDescription to be NULL, got %p", pConfig->lpDescription);
+    ok(!pConfig->lpDescription, "expected lpDescription to be NULL, got %p\n", pConfig->lpDescription);
 
     SetLastError(0xdeadbeef);
     needed = 0;




More information about the wine-cvs mailing list