Commit a6a52739 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent bff3d35e
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment