Skip to content

Commit

Permalink
Merge pull request #4297 from flysand7/ini-section
Browse files Browse the repository at this point in the history
[encoding/ini]: Add missing line terminator at the end of the section
  • Loading branch information
gingerBill authored Sep 25, 2024
2 parents 791b05b + 45d26dc commit e397fb6
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 e397fb6

Please sign in to comment.