From d0274e74f8c5801b201feaa5c0e8955dd592c17f Mon Sep 17 00:00:00 2001 From: Gina Peter Banyard Date: Mon, 5 May 2025 14:20:28 +0100 Subject: [PATCH] Zend/zend_ast: Use uint32_t type instead of int type --- Zend/zend_ast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_ast.c b/Zend/zend_ast.c index 25a3676c9f7..8d2c0077efa 100644 --- a/Zend/zend_ast.c +++ b/Zend/zend_ast.c @@ -1628,7 +1628,7 @@ static ZEND_COLD void zend_ast_export_var(smart_str *str, zend_ast *ast, int pri /* Use zend_ast_export_list() unless fewer than `list->children` children should * be exported. */ -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) +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) { ZEND_ASSERT(children <= list->children); uint32_t i = 0;