Commit a5df09b4 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

ws2_32: Make SOCKET output consistent.

parent ee19362f
...@@ -2293,7 +2293,7 @@ static int WS2_register_async_shutdown( SOCKET s, int type ) ...@@ -2293,7 +2293,7 @@ static int WS2_register_async_shutdown( SOCKET s, int type )
struct ws2_async *wsa; struct ws2_async *wsa;
NTSTATUS status; NTSTATUS status;
TRACE("s %ld type %d\n", s, type); TRACE("s %04lx type %d\n", s, type);
wsa = HeapAlloc( GetProcessHeap(), 0, FIELD_OFFSET( struct ws2_async, iovec[1] )); wsa = HeapAlloc( GetProcessHeap(), 0, FIELD_OFFSET( struct ws2_async, iovec[1] ));
if ( !wsa ) if ( !wsa )
...@@ -3744,7 +3744,7 @@ INT WINAPI WSAIoctl(SOCKET s, DWORD code, LPVOID in_buff, DWORD in_size, LPVOID ...@@ -3744,7 +3744,7 @@ INT WINAPI WSAIoctl(SOCKET s, DWORD code, LPVOID in_buff, DWORD in_size, LPVOID
int fd; int fd;
DWORD status = 0, total = 0; DWORD status = 0, total = 0;
TRACE("%ld, %s, %p, %d, %p, %d, %p, %p, %p\n", TRACE("%04lx, %s, %p, %d, %p, %d, %p, %p, %p\n",
s, debugstr_wsaioctl(code), in_buff, in_size, out_buff, out_size, ret_size, overlapped, completion); s, debugstr_wsaioctl(code), in_buff, in_size, out_buff, out_size, ret_size, overlapped, completion);
switch (code) switch (code)
......
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