Commit 3bc4e67f authored by Vladimir Pankratov's avatar Vladimir Pankratov Committed by Alexandre Julliard

shdocvw: Fix format parameter type.

parent 2ca7683d
...@@ -135,7 +135,7 @@ static HRESULT WINAPI InPlaceFrame_SetStatusText(IOleInPlaceFrame *iface, ...@@ -135,7 +135,7 @@ static HRESULT WINAPI InPlaceFrame_SetStatusText(IOleInPlaceFrame *iface,
LPCOLESTR pszStatusText) LPCOLESTR pszStatusText)
{ {
DocHost *This = INPLACEFRAME_THIS(iface); DocHost *This = INPLACEFRAME_THIS(iface);
FIXME("(%p)->(%p)\n", This, debugstr_w(pszStatusText)); FIXME("(%p)->(%s)\n", This, debugstr_w(pszStatusText));
return E_NOTIMPL; return E_NOTIMPL;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment