mf/tests: Add missing line end in test message.

This commit is contained in:
Rémi Bernon 2023-07-05 23:03:10 +02:00 committed by Alexandre Julliard
parent 495cf276d0
commit f185161235

View file

@ -2939,7 +2939,7 @@ static HRESULT WINAPI test_grabber_callback_OnProcessSample(IMFSampleGrabberSink
SetEvent(grabber->ready_event);
res = WaitForSingleObject(grabber->done_event, 1000);
ok(!res, "WaitForSingleObject returned %#lx", res);
ok(!res, "WaitForSingleObject returned %#lx\n", res);
return S_OK;
}