From: Dmitry Stogov Date: Thu, 1 Jul 2010 08:58:14 +0000 (+0000) Subject: Used more sutable type. Reduced memory usage. X-Git-Tag: php-5.4.0alpha1~191^2~1220 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a09b7138a9dd7f699de8cde14716052c99d83517;p=php Used more sutable type. Reduced memory usage. --- diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h index c22c7f979d..e1a30c5926 100644 --- a/Zend/zend_compile.h +++ b/Zend/zend_compile.h @@ -196,7 +196,7 @@ typedef struct _zend_arg_info { zend_uint name_len; const char *class_name; zend_uint class_name_len; - zend_uint type_hint; + zend_uchar type_hint; zend_bool allow_null; zend_bool pass_by_reference; zend_bool return_reference;