jani Wed Oct 10 12:51:06 2007 UTC Modified files: /php-src/ext/standard streamsfuncs.c Log: ret is still int http://cvs.php.net/viewvc.cgi/php-src/ext/standard/streamsfuncs.c?r1=1.107&r2=1.108&diff_format=u Index: php-src/ext/standard/streamsfuncs.c diff -u php-src/ext/standard/streamsfuncs.c:1.107 php-src/ext/standard/streamsfuncs.c:1.108 --- php-src/ext/standard/streamsfuncs.c:1.107 Wed Oct 10 12:44:29 2007 +++ php-src/ext/standard/streamsfuncs.c Wed Oct 10 12:51:06 2007 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: streamsfuncs.c,v 1.107 2007/10/10 12:44:29 jani Exp $ */ +/* $Id: streamsfuncs.c,v 1.108 2007/10/10 12:51:06 jani Exp $ */ #include "php.h" #include "php_globals.h" @@ -656,7 +656,8 @@ 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;
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php