From 7027baee22fd9a4e01cc3450de502098e2703b06 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Fri, 19 Dec 2003 12:44:22 +0000 Subject: [PATCH] this should be an int --- win32/select.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32/select.c b/win32/select.c index df1dba3c33b..1fb427e394c 100644 --- a/win32/select.c +++ b/win32/select.c @@ -34,7 +34,7 @@ * - Calling this with NULL sets as a portable way to sleep with sub-second * accuracy is not supported. * */ -PHPAPI int php_select(php_socket_t max_fd, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *tv) +PHPAPI int php_select(int max_fd, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *tv) { DWORD ms_total, limit; HANDLE handles[MAXIMUM_WAIT_OBJECTS];