dpnet/tests: Add a trailing '\n' to some ok() calls.

oldstable
Francois Gouget 2014-09-28 23:52:03 +02:00 committed by Alexandre Julliard
parent 857a35e2a7
commit d83f2ac0ec
1 changed files with 2 additions and 2 deletions

View File

@ -189,14 +189,14 @@ static void address_setsp(void)
hr = IDirectPlay8Address_GetNumComponents(localaddr, &components);
ok(hr == S_OK, "got 0x%08x\n", hr);
ok(components == 0, "components=%d", components);
ok(components == 0, "components=%d\n", components);
hr = IDirectPlay8Address_SetSP(localaddr, &CLSID_DP8SP_TCPIP);
ok(hr == S_OK, "got 0x%08x\n", hr);
hr = IDirectPlay8Address_GetNumComponents(localaddr, &components);
ok(hr == S_OK, "got 0x%08x\n", hr);
ok(components == 1, "components=%d", components);
ok(components == 1, "components=%d\n", components);
hr = IDirectPlay8Address_GetComponentByIndex(localaddr, 0, NULL, &namelen, NULL, &bufflen, &type);
todo_wine ok(hr == DPNERR_BUFFERTOOSMALL, "got 0x%08x\n", hr);