Skip to content

Commit ee40791

Browse files
committed
Zend/zend_compile.c: remove unused fbc parameter of zend_try_compile_special_func_ex()
1 parent 6cf45c4 commit ee40791

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Zend/zend_compile.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5038,7 +5038,7 @@ static zend_result zend_compile_func_clone(znode *result, zend_ast_list *args)
50385038
return SUCCESS;
50395039
}
50405040

5041-
static zend_result zend_try_compile_special_func_ex(znode *result, zend_string *lcname, zend_ast_list *args, zend_function *fbc, uint32_t type) /* {{{ */
5041+
static zend_result zend_try_compile_special_func_ex(znode *result, zend_string *lcname, zend_ast_list *args, uint32_t type) /* {{{ */
50425042
{
50435043
if (zend_string_equals_literal(lcname, "strlen")) {
50445044
return zend_compile_func_strlen(result, args);
@@ -5131,7 +5131,7 @@ static zend_result zend_try_compile_special_func(znode *result, zend_string *lcn
51315131
return FAILURE;
51325132
}
51335133

5134-
if (zend_try_compile_special_func_ex(result, lcname, args, fbc, type) == SUCCESS) {
5134+
if (zend_try_compile_special_func_ex(result, lcname, args, type) == SUCCESS) {
51355135
return SUCCESS;
51365136
}
51375137

0 commit comments

Comments
 (0)