ole32: Replace a spurious FIXME by a TRACE.
authorDmitry Timoshkov <dmitry@codeweavers.com>
Fri, 15 Apr 2011 08:44:43 +0000 (17:44 +0900)
committerAlexandre Julliard <julliard@winehq.org>
Fri, 15 Apr 2011 13:39:44 +0000 (15:39 +0200)
dlls/ole32/memlockbytes.c

index 57acf37f3cff7b639c84d28ff236549c9ccd8a0d..87bbfcb6eefae28222dd211ac03971e8a732081f 100644 (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;