dplayx/tests: Add missing '\n' to ok() call.

oldstable
Francois Gouget 2007-03-06 14:25:20 +01:00 committed by Alexandre Julliard
parent 52a9d1d934
commit 2c595a1a63
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}