summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2002-11-06 00:17:44 +0000
committerMarcus Boerger <helly@php.net>2002-11-06 00:17:44 +0000
commita73e74c2f814bb4695ef4ccf12a2a2edd4d7f997 (patch)
tree3bf9d69cc359d9486e29350cfb7c6b3ace77b03a
parent1f0b200188bde4c4caec06cb5cbd3d9a36e7ee10 (diff)
downloadphp-git-a73e74c2f814bb4695ef4ccf12a2a2edd4d7f997.tar.gz
Make the macro use the function and not the other macro as discussed
with Wez.
-rwxr-xr-xmain/php_streams.h2
1 files changed, 1 insertions, 1 deletions
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