From: Anatol Belski Date: Mon, 19 Feb 2018 11:01:54 +0000 (+0100) Subject: Reduce struct size by 8 bytes on 64-bit X-Git-Tag: php-7.3.0alpha1~342^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=20934d9e184f20085dbadb93e60476f6cbbbe4db;p=php Reduce struct size by 8 bytes on 64-bit --- diff --git a/ext/opcache/zend_accelerator_hash.h b/ext/opcache/zend_accelerator_hash.h index 28c663db7c..3f14bc518e 100644 --- a/ext/opcache/zend_accelerator_hash.h +++ b/ext/opcache/zend_accelerator_hash.h @@ -47,9 +47,9 @@ typedef struct _zend_accel_hash_entry zend_accel_hash_entry; struct _zend_accel_hash_entry { zend_ulong hash_value; const char *key; - uint32_t key_length; zend_accel_hash_entry *next; void *data; + uint32_t key_length; zend_bool indirect; };