dpnet/tests: Add a trailing '\n' to an ok() call.

This commit is contained in:
Francois Gouget 2014-02-12 10:28:44 +01:00 committed by Alexandre Julliard
parent 899cb20eb9
commit c92f773a3d
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ static void create_server(void)
DPN_APPLICATION_DESC appdesc;
hr = CoCreateInstance( &CLSID_DirectPlay8Address, NULL, CLSCTX_ALL, &IID_IDirectPlay8Address, (LPVOID*)&localaddr);
ok(hr == S_OK, "Failed to create IDirectPlay8Address object");
ok(hr == S_OK, "Failed to create IDirectPlay8Address object\n");
hr = IDirectPlay8Address_SetSP(localaddr, &CLSID_DP8SP_TCPIP);
ok(hr == S_OK, "got 0x%08x\n", hr);