Module: wine
Branch: master
Commit: 21541da0bba481da17c10dab93bf8c737380ff52
URL: http://source.winehq.org/git/wine.git/?a=commit;h=21541da0bba481da17c10dab9…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Tue Aug 24 10:02:21 2010 +0200
ws2_32: Add a trailing '\n' to a TRACE() call.
---
dlls/ws2_32/socket.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/ws2_32/socket.c b/dlls/ws2_32/socket.c
index acd3f6e..82d157c 100644
--- a/dlls/ws2_32/socket.c
+++ b/dlls/ws2_32/socket.c
@@ -3589,7 +3589,7 @@ int WINAPI WS_setsockopt(SOCKET s, int level, int optname,
/* After a ConnectEx call succeeds, the socket can't be used with half of the
* normal winsock functions on windows. We don't have that problem. */
case WS_SO_UPDATE_CONNECT_CONTEXT:
- TRACE("Ignoring SO_UPDATE_CONNECT_CONTEXT, since our sockets are normal");
+ TRACE("Ignoring SO_UPDATE_CONNECT_CONTEXT, since our sockets are normal\n");
return 0;
/* SO_OPENTYPE does not require a valid socket handle. */