Bruno Jesus : ws2_32: Print the correct variable.
Module: wine Branch: master Commit: ed281c743cb81130dedf072b918872f073776d58 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ed281c743cb81130dedf072b91... Author: Bruno Jesus <00cpxxx(a)gmail.com> Date: Thu Jan 8 21:48:11 2015 -0200 ws2_32: Print the correct variable. --- dlls/ws2_32/socket.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ws2_32/socket.c b/dlls/ws2_32/socket.c index 4c8d705..e1b2a05 100644 --- a/dlls/ws2_32/socket.c +++ b/dlls/ws2_32/socket.c @@ -6368,7 +6368,7 @@ int WINAPI __WSAFDIsSet(SOCKET s, WS_fd_set *set) break; } - TRACE("(socket %04lx, fd_set %p, count %i) <- %d\n", s, set, i, ret); + TRACE("(socket %04lx, fd_set %p, count %i) <- %d\n", s, set, set->fd_count, ret); return ret; }
participants (1)
-
Alexandre Julliard