diff options
| author | Ard Biesheuvel <abies@php.net> | 2004-02-25 20:16:27 +0000 |
|---|---|---|
| committer | Ard Biesheuvel <abies@php.net> | 2004-02-25 20:16:27 +0000 |
| commit | 81f05c18f5f3baf44fd8eb60e4b309bfe65562dd (patch) | |
| tree | 3ec5cff99747dcfd6bfdcf90d2d4439a977793e6 /ext/standard/streamsfuncs.c | |
| parent | b1d8f104502ac628fba97a70ed5320afd7811714 (diff) | |
| download | php-git-81f05c18f5f3baf44fd8eb60e4b309bfe65562dd.tar.gz | |
Wordsize fixes
Diffstat (limited to 'ext/standard/streamsfuncs.c')
| -rw-r--r-- | ext/standard/streamsfuncs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/standard/streamsfuncs.c b/ext/standard/streamsfuncs.c index d61963004a..858638804b 100644 --- a/ext/standard/streamsfuncs.c +++ b/ext/standard/streamsfuncs.c @@ -657,7 +657,8 @@ PHP_FUNCTION(stream_select) struct timeval *tv_p = NULL; fd_set rfds, wfds, efds; int max_fd = 0; - int retval, sets = 0, usec = 0; + int retval, sets = 0; + long usec = 0; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a!a!a!z!|l", &r_array, &w_array, &e_array, &sec, &usec) == FAILURE) return; |
