summaryrefslogtreecommitdiffstats
path: root/otherlibs/win32unix/accept.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/win32unix/accept.c')
-rw-r--r--otherlibs/win32unix/accept.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/otherlibs/win32unix/accept.c b/otherlibs/win32unix/accept.c
index 9d68b935f..21a07d710 100644
--- a/otherlibs/win32unix/accept.c
+++ b/otherlibs/win32unix/accept.c
@@ -34,10 +34,9 @@ value unix_accept(sock) /* ML */
(char *)&optionValue, sizeof(optionValue));
sock_addr_len = sizeof(sock_addr);
- h = _get_osfhandle(Int_val(sock));
- if (h == -1) uerror("accept", Nothing);
enter_blocking_section();
- s = accept(h, &sock_addr.s_gen, &sock_addr_len);
+ s = accept((SOCKET) _get_osfhandle(Int_val(sock)),
+ &sock_addr.s_gen, &sock_addr_len);
leave_blocking_section();
if (s == INVALID_SOCKET) {
_dosmaperr(WSAGetLastError());