From: Anatol Belski Date: Sat, 13 Sep 2014 18:47:59 +0000 (+0200) Subject: reduce the struct size (under circumstances) on 64 bit X-Git-Tag: PRE_NATIVE_TLS_MERGE~150^2~18^2~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=58177c27d60114a0d0ad3c2e8fffb0cc221da6b3;p=php reduce the struct size (under circumstances) on 64 bit --- diff --git a/ext/zlib/php_zlib.h b/ext/zlib/php_zlib.h index f76e4c2266..703d6f516e 100644 --- a/ext/zlib/php_zlib.h +++ b/ext/zlib/php_zlib.h @@ -49,13 +49,13 @@ typedef struct _php_zlib_context { ZEND_BEGIN_MODULE_GLOBALS(zlib) /* variables for transparent gzip encoding */ - int compression_coding; zend_long output_compression; zend_long output_compression_level; char *output_handler; php_zlib_context *ob_gzhandler; zend_long output_compression_default; zend_bool handler_registered; + int compression_coding; ZEND_END_MODULE_GLOBALS(zlib); php_stream *php_stream_gzopen(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC);