From c9d332089fbd0662afb1386fcb4ae10979dc4f67 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Thu, 18 Feb 2016 00:14:03 -0500 Subject: [PATCH] Fix build with headers that only typedef fd_set without defining a struct fd_set type --- limelight-common/PlatformSockets.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/limelight-common/PlatformSockets.c b/limelight-common/PlatformSockets.c index 9035439..30ae427 100644 --- a/limelight-common/PlatformSockets.c +++ b/limelight-common/PlatformSockets.c @@ -146,7 +146,7 @@ SOCKET connectTcpSocket(struct sockaddr_storage* dstaddr, SOCKADDR_LEN addrlen, #ifdef FIONBIO { - struct fd_set writefds, exceptfds; + fd_set writefds, exceptfds; struct timeval tv; FD_ZERO(&writefds);