From 07b986f7104ece6f09516cb1b81ad9bbb41100c9 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Fri, 7 Mar 2025 17:55:20 +0900 Subject: [PATCH] symbol.c (sym_inline_unpack): should not mix signedness --- src/symbol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/symbol.c b/src/symbol.c index 3916c9a10..c1d561104 100644 --- a/src/symbol.c +++ b/src/symbol.c @@ -95,7 +95,7 @@ static const char* sym_inline_unpack(mrb_sym sym, char *buf, mrb_int *lenp) { const size_t pack_length_max = 4; - int i; + size_t i; mrb_assert(SYMBOL_INLINE_P(sym));