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

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2021-03-14 22:54:37 +01:00 committed by Alexandre Julliard
parent 35ee15eab3
commit be74418c8c
1 changed files with 1 additions and 1 deletions

View File

@ -2182,7 +2182,7 @@ static nsresult NSAPI nsCacheInfoChannel_GetCacheTokenCachedCharset(nsICacheInfo
static nsresult NSAPI nsCacheInfoChannel_SetCacheTokenCachedCharset(nsICacheInfoChannel *iface, const nsACString *p)
{
nsChannel *This = impl_from_nsICacheInfoChannel(iface);
FIXME("(%p)->(%p)\n", This, debugstr_nsacstr(p));
FIXME("(%p)->(%s)\n", This, debugstr_nsacstr(p));
return E_NOTIMPL;
}