diff options
author | Harald Radi <phanto@php.net> | 2002-04-23 18:06:54 +0000 |
---|---|---|
committer | Harald Radi <phanto@php.net> | 2002-04-23 18:06:54 +0000 |
commit | 51e797f1e36d1261c9bcd00fd21a72af21b5b507 (patch) | |
tree | cf6069e0c2f72a49b7d870f36a68700c507379a6 /Zend/zend.h | |
parent | fc851f342ac0cff05fcc520f275e175463865e33 (diff) | |
download | php-git-51e797f1e36d1261c9bcd00fd21a72af21b5b507.tar.gz |
some type cleanup work
Diffstat (limited to 'Zend/zend.h')
-rw-r--r-- | Zend/zend.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend.h b/Zend/zend.h index 7e8624949b..e4f5f90b26 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -221,7 +221,7 @@ typedef union _zvalue_value { double dval; /* double value */ struct { char *val; - int len; + zend_uint len; } str; HashTable *ht; /* hash table value */ /* struct { @@ -272,7 +272,7 @@ union _zend_function; struct _zend_class_entry { char type; char *name; - uint name_length; + zend_uint name_length; struct _zend_class_entry *parent; int refcount; zend_bool constants_updated; |