qcap: Print 64bit integers with wine_dbgstr_longlong.

This commit is contained in:
Stefan Leichter 2006-08-18 22:25:23 +02:00 committed by Alexandre Julliard
parent 1a29c97d73
commit 759e645794
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}