summaryrefslogtreecommitdiff
path: root/win32/select.c
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2003-12-19 12:44:22 +0000
committerWez Furlong <wez@php.net>2003-12-19 12:44:22 +0000
commit7027baee22fd9a4e01cc3450de502098e2703b06 (patch)
tree9d679438a3646d183d10d7d1fb7f0114e7530cc4 /win32/select.c
parent2ad5943282cb5775a10b4621439a719d70d9fe97 (diff)
downloadphp-git-7027baee22fd9a4e01cc3450de502098e2703b06.tar.gz
this should be an int
Diffstat (limited to 'win32/select.c')
-rw-r--r--win32/select.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/select.c b/win32/select.c
index df1dba3c33..1fb427e394 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];