Browse Source

fix cast

PHP-4.0.5
Thies C. Arntzen 27 years ago
parent
commit
70003624fa
  1. 2
      Zend/zend_opcode.c

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

Loading…
Cancel
Save