Stefan Leichter : qcap: Print 64bit integers with wine_dbgstr_longlong.
Module: wine Branch: master Commit: 759e645794195572d65654ad0fece0ef0599745a URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=759e645794195572d65654ad... Author: Stefan Leichter <Stefan.Leichter(a)camline.com> Date: Fri Aug 18 22:25:23 2006 +0200 qcap: Print 64bit integers with wine_dbgstr_longlong. --- dlls/qcap/capturegraph.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/qcap/capturegraph.c b/dlls/qcap/capturegraph.c index ebed918..a656ba2 100644 --- a/dlls/qcap/capturegraph.c +++ b/dlls/qcap/capturegraph.c @@ -303,8 +303,8 @@ fnCaptureGraphBuilder2_AllocCapFile(ICap { 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; }
participants (1)
-
Alexandre Julliard