Michael Stefaniuc : ws2_32: Use debugstr_guid() to trace GUIDs.
Module: wine Branch: master Commit: 8581ae8cc5b2dd9f40cc1c09d1f6afa34f8d14ca URL: http://source.winehq.org/git/wine.git/?a=commit;h=8581ae8cc5b2dd9f40cc1c09d1... Author: Michael Stefaniuc <mstefani(a)redhat.de> Date: Wed Oct 5 10:37:59 2016 +0200 ws2_32: Use debugstr_guid() to trace GUIDs. Signed-off-by: Michael Stefaniuc <mstefani(a)redhat.de> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/ws2_32/socket.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/ws2_32/socket.c b/dlls/ws2_32/socket.c index 9d0b60e..e3c7507 100644 --- a/dlls/ws2_32/socket.c +++ b/dlls/ws2_32/socket.c @@ -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; }
participants (1)
-
Alexandre Julliard