From a32e493d84c29035872ef72aa28093acbbcd486d Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Sat, 13 Sep 2014 21:22:57 +0200 Subject: [PATCH] reduce struct size by 8 byte on 64 bit --- ext/spl/php_spl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/spl/php_spl.h b/ext/spl/php_spl.h index c2b1837e8d..99279becd9 100644 --- a/ext/spl/php_spl.h +++ b/ext/spl/php_spl.h @@ -60,10 +60,10 @@ PHP_MINFO_FUNCTION(spl); ZEND_BEGIN_MODULE_GLOBALS(spl) zend_string *autoload_extensions; HashTable *autoload_functions; - int autoload_running; intptr_t hash_mask_handle; intptr_t hash_mask_handlers; int hash_mask_init; + int autoload_running; ZEND_END_MODULE_GLOBALS(spl) #ifdef ZTS -- 2.50.1