aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2025-11-22 21:18:43 +0000
committergingerBill <gingerBill@users.noreply.github.com>2025-11-22 21:18:43 +0000
commita162626f2b6476edfef8a72a5bb7114e77109f6d (patch)
tree2e448f181defe1c19b80aa03e14192039b737dae /core
parenta71917a96a997c306bd631e3ffd69f678c3ce5f5 (diff)
Use BUF_SIZE
Diffstat (limited to 'core')
-rw-r--r--core/fmt/fmt.odin2
1 files changed, 1 insertions, 1 deletions
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 {