From: Jani Taskinen Date: Wed, 10 Oct 2007 12:51:06 +0000 (+0000) Subject: ret is still int X-Git-Tag: RELEASE_2_0_0a1~1610 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=040cb2ca5dadfccec56309bc40facf359065841c;p=php ret is still int --- diff --git a/ext/standard/streamsfuncs.c b/ext/standard/streamsfuncs.c index a3e89f0ea8..749f327208 100644 --- a/ext/standard/streamsfuncs.c +++ b/ext/standard/streamsfuncs.c @@ -656,7 +656,8 @@ static int stream_array_from_fd_set(zval *stream_array, fd_set *fds TSRMLS_DC) zval **elem, **dest_elem; php_stream *stream; HashTable *new_hash; - php_socket_t this_fd, ret = 0; + php_socket_t this_fd; + int ret = 0; if (Z_TYPE_P(stream_array) != IS_ARRAY) { return 0;