From b57703825be0ff40d34ee257ce14c453c4bffb98 Mon Sep 17 00:00:00 2001 From: Zeev Suraski Date: Mon, 30 Jul 2001 01:48:22 +0000 Subject: Avoid TSRMLS_FETCH()'s (still lots of work left) --- Zend/zend_execute_API.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Zend/zend_execute_API.c') 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 -- cgit v1.2.1