Commit 81c38c87 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

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

parent 17d43ef5
......@@ -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;
}
......
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