diff options
| author | Anatol Belski <ab@php.net> | 2014-09-17 09:17:34 +0200 |
|---|---|---|
| committer | Anatol Belski <ab@php.net> | 2014-09-17 09:17:34 +0200 |
| commit | c18902d902db8646c64cedb0813ff96f9597b755 (patch) | |
| tree | 7533197fa18446b325d9d680db78ec9212c9f352 | |
| parent | 42fca623263599100746ce8e02f01b8c52311987 (diff) | |
| download | php-git-c18902d902db8646c64cedb0813ff96f9597b755.tar.gz | |
reduce struct size by 8 byte on 64 bit
| -rw-r--r-- | ext/zlib/zlib_filter.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
