Module: wine Branch: master Commit: e6a30efe70a784646e448ea14c62f88d19e61a30 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e6a30efe70a784646e448ea14c...
Author: Michael Stefaniuc mstefani@redhat.de Date: Wed Mar 21 23:37:01 2012 +0100
mshtml: Print the debug string and not the pointer to it.
---
dlls/mshtml/htmlanchor.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/mshtml/htmlanchor.c b/dlls/mshtml/htmlanchor.c index 27d39e3..1ef7f72 100644 --- a/dlls/mshtml/htmlanchor.c +++ b/dlls/mshtml/htmlanchor.c @@ -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; }