From b763b25c969286592e6e812c2b9001f915c37443 Mon Sep 17 00:00:00 2001 From: Andi Gutmans Date: Sun, 26 Mar 2000 16:00:35 +0000 Subject: - Include Andrea's fix for alloca.h --- Zend/zend_opcode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Zend/zend_opcode.c') diff --git a/Zend/zend_opcode.c b/Zend/zend_opcode.c index 74d42cfceb..96ac7952ec 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 = (zend_uint *) emalloc(sizeof(int)); + op_array->refcount = (zend_uint *) emalloc(sizeof(zend_uint)); *op_array->refcount = 1; op_array->size = initial_ops_size; op_array->last = 0; -- cgit v1.2.1