From a73e74c2f814bb4695ef4ccf12a2a2edd4d7f997 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Wed, 6 Nov 2002 00:17:44 +0000 Subject: Make the macro use the function and not the other macro as discussed with Wez. --- main/php_streams.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/php_streams.h') diff --git a/main/php_streams.h b/main/php_streams.h index 9f0425b4e6..8e94f0949b 100755 --- a/main/php_streams.h +++ b/main/php_streams.h @@ -388,7 +388,7 @@ PHPAPI php_stream_dirent *_php_stream_readdir(php_stream *dirstream, php_stream_ 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) +#define php_stream_set_chunk_size(stream, size) _php_stream_set_option((stream), PHP_STREAM_OPTION_SET_CHUNK_SIZE, (size), NULL TSRMLS_CC) /* change the blocking mode of stream: value == 1 => blocking, value == 0 => non-blocking. */ #define PHP_STREAM_OPTION_BLOCKING 1 -- cgit v1.2.1