From: Nikolay Sivov Subject: [PATCH] ws2_32: Fix build failure on Mac Message-Id: <20161209051149.21084-1-nsivov@codeweavers.com> Date: Fri, 9 Dec 2016 08:11:49 +0300 Signed-off-by: Nikolay Sivov --- 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 3cdeade..6bf3c9d 100644 --- a/dlls/ws2_32/socket.c +++ b/dlls/ws2_32/socket.c @@ -1230,7 +1230,7 @@ static BOOL get_dont_fragment(SOCKET s, int level, BOOL *out) static int once; if (!once++) FIXME("IP_DONTFRAGMENT for IPv6 not supported in this platform\n"); - return TRUE /* fake success */ + return TRUE; /* fake success */ #endif } -- 2.10.2