Commit 6e483aff authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent fae2edb9
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment