Module: wine Branch: master Commit: a21b2cc5b90612c9c334f101d57b2b7c97ce4076 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a21b2cc5b90612c9c334f101d5...
Author: Michael Stefaniuc mstefani@redhat.de Date: Tue Mar 24 09:59:33 2015 +0100
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 9355bd0..f8c7466 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); }