From: Pierre Joye Date: Tue, 9 Jun 2009 09:26:02 +0000 (+0000) Subject: - fix build (void alarm) X-Git-Tag: php-5.3.0RC3~11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ba79cd5a23d7b15c311e6a54149ca94b3264ae49;p=php - fix build (void alarm) --- diff --git a/Zend/zend_execute.h b/Zend/zend_execute.h index 56eb6f3fca..985d4d6c35 100644 --- a/Zend/zend_execute.h +++ b/Zend/zend_execute.h @@ -298,8 +298,8 @@ static inline void zend_arg_types_stack_2_pop(zend_ptr_stack *stack, zval **obje zend_ptr_stack_2_pop(stack, &a, &b); - *object = a; - *fbc = b; + *object = (zval *) a; + *fbc = (zend_function *) b; } static inline void zend_arg_types_stack_3_pop(zend_ptr_stack *stack, zend_class_entry **called_scope, zval **object, zend_function **fbc) @@ -308,9 +308,9 @@ static inline void zend_arg_types_stack_3_pop(zend_ptr_stack *stack, zend_class_ zend_ptr_stack_3_pop(stack, &a, &b, &c); - *called_scope = a; - *object = b; - *fbc = c; + *called_scope = (zend_class_entry *) a; + *object = (zval *) b; + *fbc = (zend_function *) c; } void execute_new_code(TSRMLS_D);