diff options
| author | gingerBill <bill@gingerbill.org> | 2024-07-19 12:03:34 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-07-19 12:03:34 +0100 |
| commit | ba3d7ba5d3fe22800d980dbb420be4fbb117be0c (patch) | |
| tree | 5f42b5d4f842d849641eb397e598c35fcdfc8508 /core/encoding/ini | |
| parent | f226eba34227c31cfd343cc0cf458e2c8379cc1d (diff) | |
Add `core:encoding/ini` to examples/all
Diffstat (limited to 'core/encoding/ini')
| -rw-r--r-- | core/encoding/ini/ini.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/encoding/ini/ini.odin b/core/encoding/ini/ini.odin index d0dd33aba..8010e4e75 100644 --- a/core/encoding/ini/ini.odin +++ b/core/encoding/ini/ini.odin @@ -113,7 +113,7 @@ load_map_from_string :: proc(src: string, allocator: runtime.Allocator, options new_key = strings.to_lower(key) or_return delete(old_key) or_return } - pairs[new_key], err = unquote(value) or_return + pairs[new_key] = unquote(value) or_return } return } |