From: Anatol Belski Date: Fri, 12 Sep 2014 21:27:55 +0000 (+0200) Subject: reduce the struct size by 8 byte on 64 bit X-Git-Tag: PRE_NATIVE_TLS_MERGE~150^2~18^2~31 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f8d75839aa3e2042c9d158b092b41b4a9d6b79c8;p=php reduce the struct size by 8 byte on 64 bit --- diff --git a/ext/bz2/bz2_filter.c b/ext/bz2/bz2_filter.c index b19b46eb57..dd73b2fa5b 100644 --- a/ext/bz2/bz2_filter.c +++ b/ext/bz2/bz2_filter.c @@ -34,17 +34,17 @@ enum strm_status { }; typedef struct _php_bz2_filter_data { - int persistent; bz_stream strm; char *inbuf; - size_t inbuf_len; char *outbuf; + size_t inbuf_len; size_t outbuf_len; - /* Decompress options */ - enum strm_status status; - unsigned int small_footprint : 1; - unsigned int expect_concatenated : 1; + enum strm_status status; /* Decompress option */ + unsigned int small_footprint : 1; /* Decompress option */ + unsigned int expect_concatenated : 1; /* Decompress option */ + + int persistent; } php_bz2_filter_data; /* }}} */