summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2001-08-21 12:29:12 +0000
committerZeev Suraski <zeev@php.net>2001-08-21 12:29:12 +0000
commit4757104e45a9b981b5c96c65638395b382e9f52b (patch)
tree3205c014d8b5cbf705376ac899dd9818d2bdc926
parent95347cd868b2524ea1812ec36cee7479a745af4b (diff)
downloadphp-git-4757104e45a9b981b5c96c65638395b382e9f52b.tar.gz
MFZE1
-rw-r--r--Zend/zend.c3
-rw-r--r--Zend/zend_execute_API.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/Zend/zend.c b/Zend/zend.c
index bec445abca..b864b9dadc 100644
--- a/Zend/zend.c
+++ b/Zend/zend.c
@@ -84,7 +84,8 @@ static void print_hash(HashTable *ht, int indent)
zval **tmp;
char *string_key;
HashPosition iterator;
- unsigned long num_key, str_len;
+ ulong num_key;
+ uint str_len;
int i;
for (i=0; i<indent; i++) {
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c
index 069d252295..714f322d0c 100644
--- a/Zend/zend_execute_API.c
+++ b/Zend/zend_execute_API.c
@@ -314,7 +314,8 @@ ZEND_API int zval_update_constant(zval **pp, void *arg TSRMLS_DC)
} else if (p->type == IS_CONSTANT_ARRAY) {
zval **element;
char *str_index;
- ulong str_index_len, num_index;
+ uint str_index_len;
+ ulong num_index;
SEPARATE_ZVAL(pp);
p = *pp;