wez             Fri Dec 19 07:44:23 2003 EDT

  Modified files:              
    /php-src/win32      select.c 
  Log:
  this should be an int
  
Index: php-src/win32/select.c
diff -u php-src/win32/select.c:1.7 php-src/win32/select.c:1.8
--- php-src/win32/select.c:1.7  Sun Dec 14 22:15:50 2003
+++ php-src/win32/select.c      Fri Dec 19 07:44:22 2003
@@ -21,7 +21,7 @@
 
 #ifdef PHP_WIN32
 
-/* $Id: select.c,v 1.7 2003/12/15 03:15:50 iliaa Exp $ */
+/* $Id: select.c,v 1.8 2003/12/19 12:44:22 wez Exp $ */
 
 /* Win32 select() will only work with sockets, so we roll our own implementation here.
  * - If you supply only sockets, this simply passes through to winsock select().
@@ -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];

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to