mshtml: Print the debug string instead of the pointer value.

This commit is contained in:
Michael Stefaniuc 2015-03-24 09:59:33 +01:00 committed by Alexandre Julliard
parent 87cfceb8bf
commit a21b2cc5b9
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}