[PATCH] mshtml: Print the debug strings and not the pointers to them

Michael Stefaniuc mstefani at winehq.org
Tue Jun 4 13:28:20 CDT 2019


Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
---
 dlls/mshtml/oleobj.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/mshtml/oleobj.c b/dlls/mshtml/oleobj.c
index 87147df6eb..ba29b56a23 100644
--- a/dlls/mshtml/oleobj.c
+++ b/dlls/mshtml/oleobj.c
@@ -1176,7 +1176,7 @@ static HRESULT WINAPI OleInPlaceObjectWindowless_SetObjectRects(IOleInPlaceObjec
     HTMLDocument *This = impl_from_IOleInPlaceObjectWindowless(iface);
     RECT r;
 
-    TRACE("(%p)->(%p %p)\n", This, wine_dbgstr_rect(pos), wine_dbgstr_rect(clip));
+    TRACE("(%p)->(%s %s)\n", This, wine_dbgstr_rect(pos), wine_dbgstr_rect(clip));
 
     if(clip && !EqualRect(clip, pos))
         FIXME("Ignoring clip rect %s\n", wine_dbgstr_rect(clip));
-- 
2.20.1




More information about the wine-devel mailing list