From: Anatol Belski Date: Sun, 14 Sep 2014 09:36:11 +0000 (+0200) Subject: reduce struct size by 8 byte on 64 bit X-Git-Tag: PRE_NATIVE_TLS_MERGE~158^2~85^2~54 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=041302a8f7c6162116bf30019c5eeeb9dafd26b2;p=php reduce struct size by 8 byte on 64 bit --- diff --git a/ext/phar/phar_object.c b/ext/phar/phar_object.c index ed3e60a0ea..c9f31d00f8 100755 --- a/ext/phar/phar_object.c +++ b/ext/phar/phar_object.c @@ -1382,10 +1382,10 @@ struct _phar_t { phar_archive_object *p; zend_class_entry *c; char *b; - uint l; zval *ret; - int count; php_stream *fp; + uint l; + int count; }; static int phar_build(zend_object_iterator *iter, void *puser TSRMLS_DC) /* {{{ */