quartz: Use wine_dbgstr_longlong() to trace REFERENCE_TIME.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Nikolay Sivov 2016-11-25 12:18:43 +03:00 committed by Alexandre Julliard
parent 875b8a6d4a
commit 5cdb0b5842
2 changed files with 2 additions and 3 deletions

View File

@ -536,7 +536,7 @@ static HRESULT WINAPI AsyncReader_Run(IBaseFilter * iface, REFERENCE_TIME tStart
{
AsyncReader *This = impl_from_IBaseFilter(iface);
TRACE("(%x%08x)\n", (ULONG)(tStart >> 32), (ULONG)tStart);
TRACE("(%s)\n", wine_dbgstr_longlong(tStart));
This->filter.state = State_Running;

View File

@ -5299,8 +5299,7 @@ static HRESULT WINAPI MediaFilter_Run(IMediaFilter *iface, REFERENCE_TIME tStart
IFilterGraphImpl *This = impl_from_IMediaFilter(iface);
if (tStart)
FIXME("Run called with non-null tStart: %x%08x\n",
(int)(tStart>>32), (int)tStart);
FIXME("Run called with non-null tStart: %s\n", wine_dbgstr_longlong(tStart));
return MediaControl_Run(&This->IMediaControl_iface);
}