Skip to content

Commit ba79cd5

Browse files
committed
- fix build (void alarm)
1 parent 64934cf commit ba79cd5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Zend/zend_execute.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -298,8 +298,8 @@ static inline void zend_arg_types_stack_2_pop(zend_ptr_stack *stack, zval **obje
298298

299299
zend_ptr_stack_2_pop(stack, &a, &b);
300300

301-
*object = a;
302-
*fbc = b;
301+
*object = (zval *) a;
302+
*fbc = (zend_function *) b;
303303
}
304304

305305
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_
308308

309309
zend_ptr_stack_3_pop(stack, &a, &b, &c);
310310

311-
*called_scope = a;
312-
*object = b;
313-
*fbc = c;
311+
*called_scope = (zend_class_entry *) a;
312+
*object = (zval *) b;
313+
*fbc = (zend_function *) c;
314314
}
315315

316316
void execute_new_code(TSRMLS_D);

0 commit comments

Comments
 (0)