ole32/tests: Add a trailing linefeed to an ok() message.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2020-11-25 19:40:33 +01:00 committed by Alexandre Julliard
parent ed2b42727f
commit d529e13c5b
1 changed files with 1 additions and 1 deletions

View File

@ -2775,7 +2775,7 @@ static DWORD CALLBACK test_CoWaitForMultipleHandles_thread(LPVOID arg)
ok(hr == RPC_S_CALLPENDING, "expected RPC_S_CALLPENDING, got 0x%08x\n", hr);
hr = CoWaitForMultipleHandles(0, 200, 1, &thread, &index);
ok(hr == S_OK, "expected S_OK, got 0x%08x\n", hr);
ok(index == WAIT_OBJECT_0, "cowait_unmarshal_thread didn't finish");
ok(index == WAIT_OBJECT_0, "cowait_unmarshal_thread didn't finish\n");
CloseHandle(thread);
hr = CoRegisterMessageFilter(NULL, NULL);