Skip to content

Commit

Permalink
[encoding/ini]: Add missing line terminator at the end of the section
Browse files Browse the repository at this point in the history
  • Loading branch information
flysand7 committed Sep 24, 2024
1 parent 2c5be4e commit 45d26dc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions core/encoding/ini/ini.odin
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 45d26dc

Please sign in to comment.