wez Sun Feb 16 17:33:29 2003 EDT Modified files: /php4/ext/standard file.c Log: Remove unused vars Index: php4/ext/standard/file.c diff -u php4/ext/standard/file.c:1.302 php4/ext/standard/file.c:1.303 --- php4/ext/standard/file.c:1.302 Sat Feb 15 22:48:47 2003 +++ php4/ext/standard/file.c Sun Feb 16 17:33:29 2003 @@ -21,7 +21,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: file.c,v 1.302 2003/02/16 03:48:47 wez Exp $ */ +/* $Id: file.c,v 1.303 2003/02/16 22:33:29 wez Exp $ */ /* Synced with php 3.0 revision 1.218 1999-06-16 [ssb] */ @@ -829,12 +829,11 @@ static int php_select(int max_fd, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *tv) { HANDLE *handles; - DWORD ms, waitret; + DWORD waitret; DWORD ms_total; int i, f, s, fd_count = 0, sock_count = 0; int retval; fd_set ard, awr, aex; /* active fd sets */ - long sock_events; for (i = 0; i < max_fd; i++) { if (FD_ISSET(i, rfds) || FD_ISSET(i, wfds) || FD_ISSET(i, efds)) {
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php