mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Fix #3407
This commit is contained in:
+1
-1
@@ -2711,7 +2711,7 @@ fmt_value :: proc(fi: ^Info, v: any, verb: rune) {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
io.write_byte(fi.writer, '[' if verb != 'w' else '{', &fi.n)
|
io.write_byte(fi.writer, '[' if verb != 'w' else '{', &fi.n)
|
||||||
io.write_byte(fi.writer, ']' if verb != 'w' else '}', &fi.n)
|
defer io.write_byte(fi.writer, ']' if verb != 'w' else '}', &fi.n)
|
||||||
for i in 0..<info.count {
|
for i in 0..<info.count {
|
||||||
if i > 0 { io.write_string(fi.writer, ", ", &fi.n) }
|
if i > 0 { io.write_string(fi.writer, ", ", &fi.n) }
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user