Skip to content

Commit 65bd57d

Browse files
committed
zend_ast: Avoid needless indirection through zend_ast_export_ns_name()
1 parent 5992bac commit 65bd57d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Zend/zend_ast.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2544,7 +2544,7 @@ static ZEND_COLD void zend_ast_export_ex(smart_str *str, zend_ast *ast, int prio
25442544
break;
25452545
default:
25462546
smart_str_appendc(str, '(');
2547-
zend_ast_export_ns_name(str, left, 0, indent);
2547+
zend_ast_export_ex(str, left, 0, indent);
25482548
smart_str_appendc(str, ')');
25492549
break;
25502550
}

0 commit comments

Comments
 (0)