From 759e645794195572d65654ad0fece0ef0599745a Mon Sep 17 00:00:00 2001 From: Stefan Leichter Date: Fri, 18 Aug 2006 22:25:23 +0200 Subject: [PATCH] qcap: Print 64bit integers with wine_dbgstr_longlong. --- dlls/qcap/capturegraph.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/qcap/capturegraph.c b/dlls/qcap/capturegraph.c index ebed9183aa6..a656ba26bd9 100644 --- a/dlls/qcap/capturegraph.c +++ b/dlls/qcap/capturegraph.c @@ -303,8 +303,8 @@ fnCaptureGraphBuilder2_AllocCapFile(ICaptureGraphBuilder2 * iface, { CaptureGraphImpl *This = impl_from_ICaptureGraphBuilder2(iface); - FIXME("(%p/%p)->(%s, %lld) Stub!\n", This, iface, - debugstr_w(lpwstr), dwlSize); + FIXME("(%p/%p)->(%s, 0x%s) Stub!\n", This, iface, + debugstr_w(lpwstr), wine_dbgstr_longlong(dwlSize)); return E_NOTIMPL; }