From 96271ff8fb9e0556e8021683ae2a017758d24b3f Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Sun, 14 Jun 2009 10:05:11 +0000 Subject: [PATCH] - MF53: fix build (void alarm) --- Zend/zend_execute.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Zend/zend_execute.h b/Zend/zend_execute.h index d3686fc135..700a03e1ba 100644 --- a/Zend/zend_execute.h +++ b/Zend/zend_execute.h @@ -175,8 +175,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) @@ -185,9 +185,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); -- 2.40.0