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

oldstable
Michael Stefaniuc 2012-03-21 23:37:01 +01:00 committed by Alexandre Julliard
parent 4df6fe1246
commit e6a30efe70
1 changed files with 1 additions and 1 deletions

View File

@ -392,7 +392,7 @@ static HRESULT WINAPI HTMLAnchorElement_get_protocol(IHTMLAnchorElement *iface,
static HRESULT WINAPI HTMLAnchorElement_put_search(IHTMLAnchorElement *iface, BSTR v)
{
HTMLAnchorElement *This = impl_from_IHTMLAnchorElement(iface);
FIXME("(%p)->(%p)\n", This, debugstr_w(v));
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
return E_NOTIMPL;
}