diff options
Diffstat (limited to 'src/runtime/c/pgf/expr.c')
| -rw-r--r-- | src/runtime/c/pgf/expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/c/pgf/expr.c b/src/runtime/c/pgf/expr.c index e457b7c9e..494708e8c 100644 --- a/src/runtime/c/pgf/expr.c +++ b/src/runtime/c/pgf/expr.c @@ -483,7 +483,7 @@ pgf_print_type(PgfType *type, int prec, GuWriter *wtr, GuExn *err) gu_string_write(type->cid, wtr, err); - for (int i = 0; i < type->n_exprs; i++) { + for (size_t i = 0; i < type->n_exprs; i++) { gu_puts(" ", wtr, err); pgf_print_expr(type->exprs[i], 4, wtr, err); } @@ -494,7 +494,7 @@ pgf_print_type(PgfType *type, int prec, GuWriter *wtr, GuExn *err) gu_string_write(type->cid, wtr, err); - for (int i = 0; i < type->n_exprs; i++) { + for (size_t i = 0; i < type->n_exprs; i++) { gu_puts(" ", wtr, err); pgf_print_expr(type->exprs[i], 4, wtr, err); } |
