From 20934d9e184f20085dbadb93e60476f6cbbbe4db Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Mon, 19 Feb 2018 12:01:54 +0100 Subject: [PATCH] Reduce struct size by 8 bytes on 64-bit --- ext/opcache/zend_accelerator_hash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }; -- 2.50.1