Module: wine Branch: master Commit: 2c595a1a639d0bea2f62ce83862ed1b4fa8c1002 URL: http://source.winehq.org/git/wine.git/?a=commit;h=2c595a1a639d0bea2f62ce8386...
Author: Francois Gouget fgouget@free.fr Date: Tue Mar 6 14:25:20 2007 +0100
dplayx/tests: Add missing '\n' to ok() call.
---
dlls/dplayx/tests/dplayx.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/dplayx/tests/dplayx.c b/dlls/dplayx/tests/dplayx.c index 92f9865..e6f39e8 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); }