Michael Stefaniuc : mshtml: Print the debug strings and not the pointers to them.

Alexandre Julliard julliard at winehq.org
Tue Jun 4 16:28:14 CDT 2019


Module: wine
Branch: master
Commit: f38c066561efb4995f47cbcf615488930140a92f
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=f38c066561efb4995f47cbcf615488930140a92f

Author: Michael Stefaniuc <mstefani at winehq.org>
Date:   Tue Jun  4 20:28:20 2019 +0200

mshtml: Print the debug strings and not the pointers to them.

Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
Signed-off-by: Jacek Caban <jacek at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard 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 87147df..ba29b56 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));




More information about the wine-cvs mailing list