summaryrefslogtreecommitdiff
path: root/Zend
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2010-07-01 08:58:14 +0000
committerDmitry Stogov <dmitry@php.net>2010-07-01 08:58:14 +0000
commita09b7138a9dd7f699de8cde14716052c99d83517 (patch)
tree62aacaa0bfc9973c84e43ea26219b002fdf87883 /Zend
parente3fdf31b0bf3b7b799ea25ba5ec14be194813e0b (diff)
downloadphp-git-a09b7138a9dd7f699de8cde14716052c99d83517.tar.gz
Used more sutable type. Reduced memory usage.
Diffstat (limited to 'Zend')
-rw-r--r--Zend/zend_compile.h2
1 files changed, 1 insertions, 1 deletions
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;