diff options
Diffstat (limited to 'Zend/zend_execute_API.c')
-rw-r--r-- | Zend/zend_execute_API.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index 42137cff0c..e2bc057aab 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -173,8 +173,8 @@ void shutdown_executor(TSRMLS_D) zend_ptr_stack_destroy(&EG(argument_stack)); /* Destroy all op arrays */ - zend_hash_apply(EG(function_table), (int (*)(void *)) is_not_internal_function); - zend_hash_apply(EG(class_table), (int (*)(void *)) is_not_internal_class); + zend_hash_apply(EG(function_table), (apply_func_t) is_not_internal_function); + zend_hash_apply(EG(class_table), (apply_func_t) is_not_internal_class); } zend_end_try(); zend_destroy_rsrc_list(TSRMLS_C); /* must be destroyed after the main symbol table and |