summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-09-13 20:47:59 +0200
committerAnatol Belski <ab@php.net>2014-09-13 23:21:49 +0200
commit58177c27d60114a0d0ad3c2e8fffb0cc221da6b3 (patch)
tree4526f3c735e7329b04568dfbd4d5a8bcd6993adc
parenta7690fea7af57855fd0e05d9623d0a4467329003 (diff)
downloadphp-git-58177c27d60114a0d0ad3c2e8fffb0cc221da6b3.tar.gz
reduce the struct size (under circumstances) on 64 bit
-rw-r--r--ext/zlib/php_zlib.h2
1 files changed, 1 insertions, 1 deletions
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);