mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Zend/zend_ast: Use uint32_t type instead of int type
This commit is contained in:
parent
8512514a0f
commit
d0274e74f8
1 changed files with 1 additions and 1 deletions
|
@ -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
|
/* Use zend_ast_export_list() unless fewer than `list->children` children should
|
||||||
* be exported. */
|
* 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);
|
ZEND_ASSERT(children <= list->children);
|
||||||
uint32_t i = 0;
|
uint32_t i = 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue