mirror of
https://github.com/odin-lang/Odin.git
synced 2026-02-13 14:53:34 +00:00
[encoding/ini]: Add missing line terminator at the end of the section
This commit is contained in:
@@ -154,6 +154,7 @@ write_section :: proc(w: io.Writer, name: string, n_written: ^int = nil) -> (n:
|
||||
io.write_byte (w, '[', &n) or_return
|
||||
io.write_string(w, name, &n) or_return
|
||||
io.write_byte (w, ']', &n) or_return
|
||||
io.write_byte (w, '\n', &n) or_return
|
||||
return
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user