Module: wine Branch: master Commit: b46a62843f783a3f6e463d189559b8dc23727a02 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b46a62843f783a3f6e463d1895...
Author: Francois Gouget fgouget@free.fr Date: Tue Jan 6 16:49:29 2015 +0100
ws2_32: Add a trailing '\n' to a TRACE() call.
---
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 4edc38f..4c8d705 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", s, set, i, ret); + TRACE("(socket %04lx, fd_set %p, count %i) <- %d\n", s, set, i, ret); return ret; }