From 2c595a1a639d0bea2f62ce83862ed1b4fa8c1002 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Tue, 6 Mar 2007 14:25:20 +0100 Subject: [PATCH] dplayx/tests: Add missing '\n' to ok() call. --- dlls/dplayx/tests/dplayx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/dplayx/tests/dplayx.c b/dlls/dplayx/tests/dplayx.c index 92f9865bc4d..e6f39e8e61e 100644 --- a/dlls/dplayx/tests/dplayx.c +++ b/dlls/dplayx/tests/dplayx.c @@ -76,7 +76,7 @@ static void test_session_guid(LPDIRECTPLAY4 pDP) IDirectPlayX_GetSessionDesc(pDP, NULL, &sessionSize); newSession = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sessionSize); IDirectPlayX_GetSessionDesc(pDP, newSession, &sessionSize); - todo_wine ok( !IsEqualGUID(&newSession->guidInstance, &zeroGuid), "Session guid not initialized"); + todo_wine ok( !IsEqualGUID(&newSession->guidInstance, &zeroGuid), "Session guid not initialized\n"); HeapFree(GetProcessHeap(), 0, newSession); }