ole32: Replace a spurious FIXME by a TRACE.

This commit is contained in:
Dmitry Timoshkov 2011-04-15 17:44:43 +09:00 committed by Alexandre Julliard
parent cc01c46f41
commit 30b6b53adf
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ HRESULT WINAPI GetHGlobalFromILockBytes(ILockBytes* plkbyt, HGLOBAL* phglobal)
ERR("Cannot ILockBytes_Stat, %x\n",hres);
return hres;
}
FIXME("cbSize is %d\n",stbuf.cbSize.u.LowPart);
TRACE("cbSize is %s\n", wine_dbgstr_longlong(stbuf.cbSize.QuadPart));
*phglobal = GlobalAlloc( GMEM_MOVEABLE|GMEM_SHARE, stbuf.cbSize.u.LowPart);
if (!*phglobal)
return E_INVALIDARG;