msado15: Print the debug strings and not the pointers to them.
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
89500484c2
commit
516dc46b82
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue