diff --git a/core/fmt/fmt.odin b/core/fmt/fmt.odin index 7429a093d..1cfd6ea33 100644 --- a/core/fmt/fmt.odin +++ b/core/fmt/fmt.odin @@ -975,7 +975,7 @@ fmt_string :: proc(fi: ^Info, s: string, verb: rune) { } } else { - io.write_string(fi.writer, s[:fi.width], &fi.n) + io.write_string(fi.writer, s, &fi.n) } } else