From c18902d902db8646c64cedb0813ff96f9597b755 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Wed, 17 Sep 2014 09:17:34 +0200 Subject: [PATCH] reduce struct size by 8 byte on 64 bit --- ext/zlib/zlib_filter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/zlib/zlib_filter.c b/ext/zlib/zlib_filter.c index 53bc2e4269..29377d8e99 100644 --- a/ext/zlib/zlib_filter.c +++ b/ext/zlib/zlib_filter.c @@ -25,12 +25,12 @@ /* Passed as opaque in malloc callbacks */ typedef struct _php_zlib_filter_data { - int persistent; z_stream strm; char *inbuf; size_t inbuf_len; char *outbuf; size_t outbuf_len; + int persistent; zend_bool finished; } php_zlib_filter_data; -- 2.40.0