Merge pull request #4297 from flysand7/ini-section

[encoding/ini]: Add missing line terminator at the end of the section
This commit is contained in:
gingerBill
2024-09-25 16:07:03 +01:00
committed by GitHub
+1
View File
@@ -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
}