summaryrefslogtreecommitdiff
path: root/Zend/zend_execute.c
diff options
context:
space:
mode:
authorHarald Radi <phanto@php.net>2002-04-23 18:06:54 +0000
committerHarald Radi <phanto@php.net>2002-04-23 18:06:54 +0000
commit51e797f1e36d1261c9bcd00fd21a72af21b5b507 (patch)
treecf6069e0c2f72a49b7d870f36a68700c507379a6 /Zend/zend_execute.c
parentfc851f342ac0cff05fcc520f275e175463865e33 (diff)
downloadphp-git-51e797f1e36d1261c9bcd00fd21a72af21b5b507.tar.gz
some type cleanup work
Diffstat (limited to 'Zend/zend_execute.c')
-rw-r--r--Zend/zend_execute.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_execute.c b/Zend/zend_execute.c
index d1150f520c..400ad892b3 100644
--- a/Zend/zend_execute.c
+++ b/Zend/zend_execute.c
@@ -427,7 +427,7 @@ static inline void zend_assign_to_variable(znode *result, znode *op1, znode *op2
break;
}
if (T->EA.data.str_offset.offset >= T->EA.data.str_offset.str->value.str.len) {
- int i;
+ zend_uint i;
if (T->EA.data.str_offset.str->value.str.len==0) {
STR_FREE(T->EA.data.str_offset.str->value.str.val);
@@ -493,7 +493,7 @@ static inline void zend_assign_to_variable(znode *result, znode *op1, znode *op2
if (PZVAL_IS_REF(variable_ptr)) {
if (variable_ptr!=value) {
- short refcount=variable_ptr->refcount;
+ zend_uint refcount = variable_ptr->refcount;
zval garbage;
if (type!=IS_TMP_VAR) {
@@ -1814,7 +1814,7 @@ binary_assign_op_addr_obj:
zval *class_name;
zend_bool is_const;
char *class_name_strval;
- int class_name_strlen;
+ zend_uint class_name_strlen;
if (EX(opline)->extended_value == ZEND_FETCH_CLASS_SELF) {
if (!EG(scope)) {