From 5cdb0b5842abb520f581521ad1ccab320b9cb962 Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Fri, 25 Nov 2016 12:18:43 +0300 Subject: [PATCH] quartz: Use wine_dbgstr_longlong() to trace REFERENCE_TIME. Signed-off-by: Nikolay Sivov Signed-off-by: Alexandre Julliard --- 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 1024bd04d66..ed7e5ee2017 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 88af2f6d005..faf6e513f4c 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); } -- 2.11.4.GIT