wmvcore: 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>
oldstable
Michael Stefaniuc 2017-10-25 23:06:40 +02:00 committed by Alexandre Julliard
parent 17d43ef54e
commit 81c38c8785
1 changed files with 1 additions and 1 deletions

View File

@ -1490,7 +1490,7 @@ static HRESULT WINAPI headerinfo_AddScript(IWMHeaderInfo3 *iface, LPCWSTR_WMSDK_
LPCWSTR_WMSDK_TYPE_SAFE command, QWORD script_time)
{
WMReader *This = impl_from_IWMHeaderInfo3(iface);
FIXME("%p, %s, %p, %s\n", This, debugstr_w(type), debugstr_w(command), wine_dbgstr_longlong(script_time));
FIXME("%p, %s, %s, %s\n", This, debugstr_w(type), debugstr_w(command), wine_dbgstr_longlong(script_time));
return E_NOTIMPL;
}