http://git.etersoft.ru/projects
/
wine
/
eterwine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cc01c46
)
ole32: Replace a spurious FIXME by a TRACE.
author
Dmitry Timoshkov
<dmitry@codeweavers.com>
Fri, 15 Apr 2011 08:44:43 +0000
(17:44 +0900)
committer
Alexandre Julliard
<julliard@winehq.org>
Fri, 15 Apr 2011 13:39:44 +0000
(15:39 +0200)
dlls/ole32/memlockbytes.c
patch
|
blob
|
blame
|
history
diff --git
a/dlls/ole32/memlockbytes.c
b/dlls/ole32/memlockbytes.c
index 57acf37f3cff7b639c84d28ff236549c9ccd8a0d..87bbfcb6eefae28222dd211ac03971e8a732081f 100644
(file)
--- 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;