Michael Stefaniuc : mshtml: Print the debug string and not the pointer to it.

Alexandre Julliard julliard at winehq.org
Thu Jan 31 14:50:13 CST 2019


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

Author: Michael Stefaniuc <mstefani at winehq.org>
Date:   Thu Jan 31 20:56:27 2019 +0100

mshtml: Print the debug string and not the pointer to it.

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/htmlevent.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/mshtml/htmlevent.c b/dlls/mshtml/htmlevent.c
index cab39d6..9fa258c 100644
--- a/dlls/mshtml/htmlevent.c
+++ b/dlls/mshtml/htmlevent.c
@@ -2121,7 +2121,7 @@ static HRESULT WINAPI DOMCustomEvent_initCustomEvent(IDOMCustomEvent *iface, BST
     DOMCustomEvent *This = impl_from_IDOMCustomEvent(iface);
     HRESULT hres;
 
-    TRACE("(%p)->(%s %x %x %p)\n", This, debugstr_w(type), can_bubble, cancelable, debugstr_variant(detail));
+    TRACE("(%p)->(%s %x %x %s)\n", This, debugstr_w(type), can_bubble, cancelable, debugstr_variant(detail));
 
     hres = IDOMEvent_initEvent(&This->event.IDOMEvent_iface, type, can_bubble, cancelable);
     if(FAILED(hres))




More information about the wine-cvs mailing list