Skip to content

Commit

Permalink
win32sck.c: use "fd_set" instead of "FD_SET"
Browse files Browse the repository at this point in the history
The former is the canonical name of the type. The latter doesn't work
on MinGW.org.
  • Loading branch information
xenu committed May 11, 2021
1 parent a644daa commit 9994e22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion win32/win32sck.c
Expand Up @@ -492,7 +492,7 @@ win32_select(int nfds, Perl_fd_set* rd, Perl_fd_set* wr, Perl_fd_set* ex, const
{
int r;
int i, fd, save_errno = errno;
FD_SET nrd, nwr, nex;
fd_set nrd, nwr, nex;
bool just_sleep = TRUE;

StartSockets();
Expand Down

0 comments on commit 9994e22

Please sign in to comment.