helly Tue Nov 5 06:10:06 2002 EDT
Modified files:
/php4/main php_streams.h
Log:
correct define: silences compiler warning in http_fopen_wrapper.c
Index: php4/main/php_streams.h
diff -u php4/main/php_streams.h:1.58 php4/main/php_streams.h:1.59
--- php4/main/php_streams.h:1.58 Sun Oct 27 22:45:21 2002
+++ php4/main/php_streams.h Tue Nov 5 06:10:06 2002
@@ -384,7 +384,7 @@
PHPAPI int _php_stream_set_option(php_stream *stream, int option, int value, void
*ptrparam TSRMLS_DC);
#define php_stream_set_option(stream, option, value, ptrvalue)
_php_stream_set_option((stream), (option), (value), (ptrvalue) TSRMLS_CC)
-#define php_stream_set_chunk_size(stream, size) php_stream_set_option((stream),
PHP_STREAM_OPTION_SET_CHUNK_SIZE, (size), NULL TSRMLS_CC)
+#define php_stream_set_chunk_size(stream, size) php_stream_set_option((stream),
+PHP_STREAM_OPTION_SET_CHUNK_SIZE, (size), NULL)
/* change the blocking mode of stream: value == 1 => blocking, value == 0 =>
non-blocking. */
#define PHP_STREAM_OPTION_BLOCKING 1
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php