ws2_32: Use debugstr_guid() to trace GUIDs.

Signed-off-by: Michael Stefaniuc <mstefani@redhat.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2016-10-05 10:37:59 +02:00 committed by Alexandre Julliard
parent 883fe110ea
commit 8581ae8cc5
1 changed files with 2 additions and 2 deletions

View File

@ -7880,7 +7880,7 @@ int WINAPI WSAInstallServiceClassW(LPWSASERVICECLASSINFOW info)
*/
int WINAPI WSARemoveServiceClass(LPGUID info)
{
FIXME("Request to remove service %p\n",info);
FIXME("Request to remove service %s\n", debugstr_guid(info));
SetLastError(WSATYPE_NOT_FOUND);
return SOCKET_ERROR;
}
@ -8569,7 +8569,7 @@ INT WINAPI WSCInstallNameSpace( LPWSTR identifier, LPWSTR path, DWORD namespace,
*/
INT WINAPI WSCUnInstallNameSpace( LPGUID lpProviderId )
{
FIXME("(%p) Stub!\n", lpProviderId);
FIXME("(%s) Stub!\n", debugstr_guid(lpProviderId));
return NO_ERROR;
}