Skip to content

Commit 2d72fc8

Browse files
committed
Fix another MinGW64 build issue. WSAEWOULDBLOCK is not MinGW-specific.
1 parent f4d39c2 commit 2d72fc8

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

libvncclient/sockets.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,7 @@
3838
#ifdef WIN32
3939
#undef SOCKET
4040
#include <winsock2.h>
41-
#ifdef MINGW32
4241
#define EWOULDBLOCK WSAEWOULDBLOCK
43-
#endif
4442
#define close closesocket
4543
#define read(sock,buf,len) recv(sock,buf,len,0)
4644
#define write(sock,buf,len) send(sock,buf,len,0)

0 commit comments

Comments
 (0)