diff options
author | Marcus Boerger <helly@php.net> | 2002-11-05 11:10:06 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2002-11-05 11:10:06 +0000 |
commit | 8f6120fef44c05a3bacc46f3838759a0b12f4d92 (patch) | |
tree | e795c3cfce819b8b7d51cbee60662bff80dd0230 /main/php_streams.h | |
parent | 210c6e75f2bd6c0aed60698731d1e26bdda16540 (diff) | |
download | php-git-8f6120fef44c05a3bacc46f3838759a0b12f4d92.tar.gz |
correct define: silences compiler warning in http_fopen_wrapper.c
Diffstat (limited to 'main/php_streams.h')
-rwxr-xr-x | main/php_streams.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_streams.h b/main/php_streams.h index 7e93aad7ba..f983b02c3a 100755 --- a/main/php_streams.h +++ b/main/php_streams.h @@ -384,7 +384,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 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 |