ole32: Replace a spurious FIXME by a TRACE.

Dmitry Timoshkov dmitry at codeweavers.com
Fri Apr 15 03:44:43 CDT 2011


---
 dlls/ole32/memlockbytes.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/ole32/memlockbytes.c b/dlls/ole32/memlockbytes.c
index 57acf37..87bbfcb 100644
--- a/dlls/ole32/memlockbytes.c
+++ b/dlls/ole32/memlockbytes.c
@@ -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;
-- 
1.7.4.3




More information about the wine-patches mailing list