diff --git a/core/fmt/fmt.odin b/core/fmt/fmt.odin index 48efc7e50..ec9a0888d 100644 --- a/core/fmt/fmt.odin +++ b/core/fmt/fmt.odin @@ -1036,7 +1036,8 @@ fmt_bit_set :: proc(fi: ^Info, v: any, name: string = "") { continue loop; } } - strings.write_i64(fi.buf, i64(i), 10); + v := i64(i) + info.lower; + strings.write_i64(fi.buf, v, 10); commas += 1; } }