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

Signed-off-by: Michael Stefaniuc <mstefani@redhat.de>
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Michael Stefaniuc 2016-02-25 09:25:30 +01:00 committed by Alexandre Julliard
parent 0383509eeb
commit 1496777d5f
1 changed files with 1 additions and 1 deletions

View File

@ -716,7 +716,7 @@ HRESULT WINAPI WsGetReaderProperty( WS_XML_READER *handle, WS_XML_READER_PROPERT
HRESULT WINAPI WsGetXmlAttribute( WS_XML_READER *handle, const WS_XML_STRING *attr,
WS_HEAP *heap, WCHAR **str, ULONG *len, WS_ERROR *error )
{
FIXME( "%p %p %p %p %p %p: stub\n", handle, debugstr_xmlstr(attr), heap, str, len, error );
FIXME( "%p %s %p %p %p %p: stub\n", handle, debugstr_xmlstr(attr), heap, str, len, error );
return E_NOTIMPL;
}