1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

this should be an int

This commit is contained in:
Wez Furlong
2003-12-19 12:44:22 +00:00
parent 2ad5943282
commit 7027baee22

View File

@@ -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];