Commit 516dc46b authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

msado15: Print the debug strings and not the pointers to them.

parent 89500484
......@@ -187,7 +187,7 @@ static HRESULT WINAPI connection_Open( _Connection *iface, BSTR connect_str, BST
LONG options )
{
FIXME( "%p, %s, %s, %p, %08x\n", iface, debugstr_w(connect_str), debugstr_w(userid),
debugstr_w(password), options );
password, options );
return E_NOTIMPL;
}
......
......@@ -371,7 +371,7 @@ static HRESULT WINAPI stream_ReadText( _Stream *iface, LONG len, BSTR *ret )
static HRESULT WINAPI stream_WriteText( _Stream *iface, BSTR data, StreamWriteEnum options )
{
FIXME( "%p, %p, %u\n", iface, debugstr_w(data), options );
FIXME( "%p, %s, %u\n", iface, debugstr_w(data), options );
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