This commit is contained in:
Zeev Suraski 2001-08-21 12:29:12 +00:00
parent 95347cd868
commit 4757104e45
2 changed files with 4 additions and 2 deletions

View File

@ -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++) {

View File

@ -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;