diff options
author | Steve Hay <SteveHay@planit.com> | 2005-03-30 08:36:50 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-03-30 08:36:50 +0000 |
commit | 47660177f659a8fbe5e2bac72a2bdfad9744a453 (patch) | |
tree | e5761ec270a4dbf5aa090b5d943c4254d55e8757 /win32/win32sck.c | |
parent | 9d70ac1bf1ad8f13286afaa13cb098444403f9fb (diff) | |
download | perl-47660177f659a8fbe5e2bac72a2bdfad9744a453.tar.gz |
A couple more Win32 compilation clean-ups
p4raw-id: //depot/perl@24099
Diffstat (limited to 'win32/win32sck.c')
-rw-r--r-- | win32/win32sck.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win32/win32sck.c b/win32/win32sck.c index 58b13e0580..6b3d354fd1 100644 --- a/win32/win32sck.c +++ b/win32/win32sck.c @@ -312,11 +312,11 @@ win32_select(int nfds, Perl_fd_set* rd, Perl_fd_set* wr, Perl_fd_set* ex, const for (i = 0; i < nfds; i++) { fd = TO_SOCKET(i); if (PERL_FD_ISSET(i,rd)) - FD_SET(fd, &nrd); + FD_SET((unsigned)fd, &nrd); if (PERL_FD_ISSET(i,wr)) - FD_SET(fd, &nwr); + FD_SET((unsigned)fd, &nwr); if (PERL_FD_ISSET(i,ex)) - FD_SET(fd, &nex); + FD_SET((unsigned)fd, &nex); } errno = save_errno; |