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

This commit is contained in:
Francois Gouget 2014-01-30 14:32:08 +01:00 committed by Alexandre Julliard
parent bff3d35e20
commit a6a5273959
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ static void create_server(void)
IDirectPlay8Server *server = NULL;
hr = CoCreateInstance( &CLSID_DirectPlay8Server, NULL, CLSCTX_ALL, &IID_IDirectPlay8Server, (LPVOID*)&server);
ok(hr == S_OK, "Failed to create IDirectPlay8Server object");
ok(hr == S_OK, "Failed to create IDirectPlay8Server object\n");
if( SUCCEEDED(hr) )
{
hr = IDirectPlay8Server_Close(server, 0);