mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 15:18:49 +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_byte (w, '[', &n) or_return
|
||||||
io.write_string(w, name, &n) or_return
|
io.write_string(w, name, &n) or_return
|
||||||
io.write_byte (w, ']', &n) or_return
|
io.write_byte (w, ']', &n) or_return
|
||||||
|
io.write_byte (w, '\n', &n) or_return
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user