From: Elizabeth Figura <zfigura@codeweavers.com> --- dlls/qcap/tests/avimux.c | 4 ++-- dlls/qcap/tests/smartteefilter.c | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/dlls/qcap/tests/avimux.c b/dlls/qcap/tests/avimux.c index 8d11c5cbf04..5fdc3caa244 100644 --- a/dlls/qcap/tests/avimux.c +++ b/dlls/qcap/tests/avimux.c @@ -783,12 +783,12 @@ static void test_seeking(void) hr = IMediaSeeking_GetDuration(seeking, &time); todo_wine ok(hr == S_OK, "Got hr %#lx.\n", hr); if (hr == S_OK) - ok(!time, "Got duration %s.\n", wine_dbgstr_longlong(time)); + ok(!time, "Got duration %I64d.\n", time); hr = IMediaSeeking_GetCurrentPosition(seeking, &time); todo_wine ok(hr == S_OK, "Got hr %#lx.\n", hr); if (hr == S_OK) - ok(!time, "Got duration %s.\n", wine_dbgstr_longlong(time)); + ok(!time, "Got duration %I64d.\n", time); hr = IMediaSeeking_GetStopPosition(seeking, &time); ok(hr == E_NOTIMPL, "Got hr %#lx.\n", hr); diff --git a/dlls/qcap/tests/smartteefilter.c b/dlls/qcap/tests/smartteefilter.c index a25889d2a4d..bae2a03d5a2 100644 --- a/dlls/qcap/tests/smartteefilter.c +++ b/dlls/qcap/tests/smartteefilter.c @@ -803,8 +803,8 @@ static HRESULT WINAPI testsink_Receive(struct strmbase_sink *iface, IMediaSample else { ok(hr == S_OK, "Got hr %#lx.\n", hr); - ok(start == 30000, "Got start time %s.\n", wine_dbgstr_longlong(start)); - ok(stop == 40000, "Got stop time %s.\n", wine_dbgstr_longlong(stop)); + ok(start == 30000, "Got start time %I64d.\n", start); + ok(stop == 40000, "Got stop time %I64d.\n", stop); } hr = IMediaSample_GetMediaTime(sample, &start, &stop); @@ -815,8 +815,8 @@ static HRESULT WINAPI testsink_Receive(struct strmbase_sink *iface, IMediaSample else { ok(hr == S_OK, "Got hr %#lx.\n", hr); - ok(start == 10000, "Got start time %s.\n", wine_dbgstr_longlong(start)); - ok(stop == 20000, "Got stop time %s.\n", wine_dbgstr_longlong(stop)); + ok(start == 10000, "Got start time %I64d.\n", start); + ok(stop == 20000, "Got stop time %I64d.\n", stop); } hr = IMediaSample_IsDiscontinuity(sample); @@ -835,8 +835,8 @@ static HRESULT testsink_new_segment(struct strmbase_sink *iface, REFERENCE_TIME start, REFERENCE_TIME stop, double rate) { struct testfilter *filter = impl_from_strmbase_filter(iface->pin.filter); - ok(start == 10000, "Got start %s.\n", wine_dbgstr_longlong(start)); - ok(stop == 20000, "Got stop %s.\n", wine_dbgstr_longlong(stop)); + ok(start == 10000, "Got start %I64d.\n", start); + ok(stop == 20000, "Got stop %I64d.\n", stop); ok(rate == 1.0, "Got rate %.16e.\n", rate); SetEvent(filter->segment_event); return S_OK; -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/11021