From de494796ac0d0856bac833be7a492efa39cd8e09 Mon Sep 17 00:00:00 2001 From: dearblue Date: Wed, 20 Nov 2024 21:14:55 +0900 Subject: [PATCH] Fixed typo --- mrbgems/mruby-bigint/core/bigint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mrbgems/mruby-bigint/core/bigint.c b/mrbgems/mruby-bigint/core/bigint.c index 7b2698c14..0bf330276 100644 --- a/mrbgems/mruby-bigint/core/bigint.c +++ b/mrbgems/mruby-bigint/core/bigint.c @@ -1491,7 +1491,7 @@ int_fit_limb_p(mrb_int i) #else /* MRB_INT32 */ #if DIG_SIZE == 32 // if mp_limb is also int32_t, it always fits - return true; + return TRUE; #else /* if DIG_SIZE == 16 */ // if mp_limb is int16_t return (i >= INT16_MIN && i <= INT16_MAX);