From a21b2cc5b90612c9c334f101d57b2b7c97ce4076 Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Tue, 24 Mar 2015 09:59:33 +0100 Subject: [PATCH] mshtml: Print the debug string instead of the pointer value. --- dlls/mshtml/htmlstyle3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mshtml/htmlstyle3.c b/dlls/mshtml/htmlstyle3.c index 9355bd0b1cb..f8c74664c2d 100644 --- a/dlls/mshtml/htmlstyle3.c +++ b/dlls/mshtml/htmlstyle3.c @@ -560,7 +560,7 @@ static HRESULT WINAPI HTMLStyle5_get_maxHeight(IHTMLStyle5 *iface, VARIANT *p) { HTMLStyle *This = impl_from_IHTMLStyle5(iface); - TRACE("(%p)->(%p)\n", This, debugstr_variant(p)); + TRACE("(%p)->(%s)\n", This, debugstr_variant(p)); return get_nsstyle_attr_var(This->nsstyle, STYLEID_MAX_HEIGHT, p, 0); } -- 2.11.4.GIT