Dmitry Timoshkov : ole32: Replace a spurious FIXME by a TRACE.

Alexandre Julliard julliard at winehq.org
Fri Apr 15 10:19:25 CDT 2011


Module: wine
Branch: master
Commit: 30b6b53adfabaef7c7b1829c63274ae85ba97544
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=30b6b53adfabaef7c7b1829c63274ae85ba97544

Author: Dmitry Timoshkov <dmitry at codeweavers.com>
Date:   Fri Apr 15 17:44:43 2011 +0900

ole32: Replace a spurious FIXME by a TRACE.

---

 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;




More information about the wine-cvs mailing list