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:
parent
883fe110ea
commit
8581ae8cc5
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue