From a229f9825bc57554ca70ee5939c1f9c1a38525cd Mon Sep 17 00:00:00 2001 From: gingerBill Date: Fri, 12 Jun 2020 23:13:26 +0100 Subject: [PATCH] Fix -vet warning for `fmt.printf("%10s")` --- 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 d9f379da0..82d06bc32 100644 --- a/core/fmt/fmt.odin +++ b/core/fmt/fmt.odin @@ -899,7 +899,7 @@ fmt_string :: proc(fi: ^Info, s: string, verb: rune) { case 's', 'v': strings.write_string(fi.buf, s); if fi.width_set && len(s) < fi.width { - for i in 0..