diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2002-12-31 00:04:52 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2002-12-31 00:04:52 +0000 |
commit | 87a8b040512601a9b1c82b490a9e3d2d6fadfc26 (patch) | |
tree | 5c31784e5c80df2d92553c3774fd5f8152712d21 /ext | |
parent | 6f6bc82de797537f6d8b1db96497dd3d7d556f9a (diff) | |
download | php-git-87a8b040512601a9b1c82b490a9e3d2d6fadfc26.tar.gz |
Fix ZTS build.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/zlib/php_zlib.h | 2 | ||||
-rw-r--r-- | ext/zlib/zlib.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/zlib/php_zlib.h b/ext/zlib/php_zlib.h index 65e45fac30..5e49ab5acc 100644 --- a/ext/zlib/php_zlib.h +++ b/ext/zlib/php_zlib.h @@ -54,7 +54,7 @@ PHP_FUNCTION(gzencode); PHP_FUNCTION(ob_gzhandler); int php_enable_output_compression(int buffer_size TSRMLS_DC); -int php_ob_gzhandler_check(TSRMLS_DC); +int php_ob_gzhandler_check(TSRMLS_D); php_stream *php_stream_gzopen(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC); extern php_stream_ops php_stream_gzio_ops; diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c index fe2b4be374..798c2529f3 100644 --- a/ext/zlib/zlib.c +++ b/ext/zlib/zlib.c @@ -892,7 +892,7 @@ PHP_FUNCTION(gzencode) /* {{{ php_ob_gzhandler_check */ -int php_ob_gzhandler_check(TSRMLS_DC) +int php_ob_gzhandler_check(TSRMLS_D) { /* check for wrong usages */ if (OG(ob_nesting_level>0)) { |