Francois Gouget : rpcrt4/tests: Fix the trailing '\n' in an ok() call.

Alexandre Julliard julliard at winehq.org
Wed Dec 17 09:39:52 CST 2008


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Wed Dec 17 10:26:47 2008 +0100

rpcrt4/tests: Fix the trailing '\n' in an ok() call.

---

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

diff --git a/dlls/rpcrt4/tests/rpc.c b/dlls/rpcrt4/tests/rpc.c
index 796e408..069ead1 100644
--- a/dlls/rpcrt4/tests/rpc.c
+++ b/dlls/rpcrt4/tests/rpc.c
@@ -400,7 +400,7 @@ static void test_towers(void)
        broken(ret != RPC_S_OK), /* win2k, indeterminate */
        "TowerExplode failed with error %ld\n", ret);
     /* Windows XP SP3 sets address to NULL */
-    ok(!address || !strcmp(address, ""), "address was \"%s\" instead of \"\"\n or NULL (XP SP3)", address);
+    ok(!address || !strcmp(address, ""), "address was \"%s\" instead of \"\" or NULL (XP SP3)\n", address);
 
     I_RpcFree(address);
     I_RpcFree(tower);




More information about the wine-cvs mailing list