diff --git a/contrib/win32/win32compat/inc/sys/socket.h b/contrib/win32/win32compat/inc/sys/socket.h index 073b11a..f1cbf36 100644 --- a/contrib/win32/win32compat/inc/sys/socket.h +++ b/contrib/win32/win32compat/inc/sys/socket.h @@ -17,6 +17,6 @@ #define bind(a,b,c) w32_bind((a), (b), (c)) #define connect(a,b,c) w32_connect((a), (b), (c)) #define recv(a,b,c,d) w32_recv((a), (b), (c), (d)) -#define send(a,b,c,d) w32_send(((a), (b), (c), (d)) +#define send(a,b,c,d) w32_send((a), (b), (c), (d)) #define shutdown(a,b) w32_shutdown((a), (b)) #define socketpair(a,b,c) w32_socketpair((a), (b), (c)) diff --git a/regress/unittests/win32compat/tests.c b/regress/unittests/win32compat/tests.c index fcc3794..6eee9d7 100644 --- a/regress/unittests/win32compat/tests.c +++ b/regress/unittests/win32compat/tests.c @@ -2,7 +2,6 @@ * Author: Manoj Ampalam */ -#include #include #include #include