From: Thies C. Arntzen Date: Sun, 26 Mar 2000 14:25:20 +0000 (+0000) Subject: fix cast X-Git-Tag: PHP-4.0-RC1~26 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=70003624fa91fedd6df822096fe53ad07f74bfa1;p=php fix cast --- diff --git a/Zend/zend_opcode.c b/Zend/zend_opcode.c index faaa54f0d0..74d42cfceb 100644 --- a/Zend/zend_opcode.c +++ b/Zend/zend_opcode.c @@ -76,7 +76,7 @@ void init_op_array(zend_op_array *op_array, int initial_ops_size) } #endif - op_array->refcount = (int *) emalloc(sizeof(int)); + op_array->refcount = (zend_uint *) emalloc(sizeof(int)); *op_array->refcount = 1; op_array->size = initial_ops_size; op_array->last = 0;