Rémi Bernon : mf/tests: Add missing line end in test message.
Module: wine Branch: master Commit: f18516123512be7949e5b7a39f6da8a01ccd120a URL: https://gitlab.winehq.org/wine/wine/-/commit/f18516123512be7949e5b7a39f6da8a... Author: Rémi Bernon <rbernon(a)codeweavers.com> Date: Wed Jul 5 23:03:10 2023 +0200 mf/tests: Add missing line end in test message. --- dlls/mf/tests/mf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mf/tests/mf.c b/dlls/mf/tests/mf.c index 72170b6be5f..743946f7fba 100644 --- a/dlls/mf/tests/mf.c +++ b/dlls/mf/tests/mf.c @@ -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; }
participants (1)
-
Alexandre Julliard