Add brackets around net.c macro arguments

This commit is contained in:
Andres Amaya Garcia 2017-07-12 14:00:03 +01:00 committed by Simon Butcher
parent 86f76ea25c
commit 8388be3ec7

View file

@ -55,8 +55,8 @@
#endif
#endif /* _MSC_VER */
#define read(fd,buf,len) recv(fd,(char*)buf,(int) len,0)
#define write(fd,buf,len) send(fd,(char*)buf,(int) len,0)
#define read(fd,buf,len) recv( fd, (char*)( buf ), (int)( len ), 0 )
#define write(fd,buf,len) send( fd, (char*)( buf ), (int)( len ), 0 )
#define close(fd) closesocket(fd)
static int wsa_init_done = 0;