Skip to content

Commit d0274e7

Browse files
committed
Zend/zend_ast: Use uint32_t type instead of int type
1 parent 8512514 commit d0274e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_ast.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1628,7 +1628,7 @@ static ZEND_COLD void zend_ast_export_var(smart_str *str, zend_ast *ast, int pri
16281628

16291629
/* Use zend_ast_export_list() unless fewer than `list->children` children should
16301630
* be exported. */
1631-
static ZEND_COLD void zend_ast_export_list_ex(smart_str *str, const zend_ast_list *list, bool separator, int priority, int indent, int children)
1631+
static ZEND_COLD void zend_ast_export_list_ex(smart_str *str, const zend_ast_list *list, bool separator, int priority, int indent, uint32_t children)
16321632
{
16331633
ZEND_ASSERT(children <= list->children);
16341634
uint32_t i = 0;

0 commit comments

Comments
 (0)