Commit 8581ae8c authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

ws2_32: Use debugstr_guid() to trace GUIDs.

parent 883fe110
......@@ -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;
}
......
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