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

Francois Gouget fgouget at free.fr
Sat Mar 3 19:01:08 CST 2007


---

This fixes compilation with gcc 2.95.

 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 6568f13..ebb85f3 100644
--- a/dlls/dplayx/tests/dplayx.c
+++ b/dlls/dplayx/tests/dplayx.c
@@ -69,7 +69,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);
     }
 }
-- 
1.4.4.4




More information about the wine-patches mailing list