Module: wine Branch: master Commit: 5cdb0b5842abb520f581521ad1ccab320b9cb962 URL: http://source.winehq.org/git/wine.git/?a=commit;h=5cdb0b5842abb520f581521ad1... Author: Nikolay Sivov <nsivov(a)codeweavers.com> Date: Fri Nov 25 12:18:43 2016 +0300 quartz: Use wine_dbgstr_longlong() to trace REFERENCE_TIME. Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/quartz/filesource.c | 2 +- dlls/quartz/filtergraph.c | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/dlls/quartz/filesource.c b/dlls/quartz/filesource.c index 1024bd0..ed7e5ee 100644 --- a/dlls/quartz/filesource.c +++ b/dlls/quartz/filesource.c @@ -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; diff --git a/dlls/quartz/filtergraph.c b/dlls/quartz/filtergraph.c index 88af2f6..faf6e51 100644 --- a/dlls/quartz/filtergraph.c +++ b/dlls/quartz/filtergraph.c @@ -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); }