From a162626f2b6476edfef8a72a5bb7114e77109f6d Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sat, 22 Nov 2025 21:18:43 +0000 Subject: [PATCH] Use BUF_SIZE --- core/fmt/fmt.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/fmt/fmt.odin b/core/fmt/fmt.odin index 9c245de94..7716a2464 100644 --- a/core/fmt/fmt.odin +++ b/core/fmt/fmt.odin @@ -1067,7 +1067,7 @@ _fmt_int :: proc(fi: ^Info, u: u64, base: int, is_signed: bool, bit_size: int, d } } - buf: [256]byte + buf: [BUF_SIZE]byte start := 0 if fi.hash && !is_signed {