diff options
| author | gingerBill <bill@gingerbill.org> | 2022-06-11 15:57:56 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-06-11 15:57:56 +0100 |
| commit | 38ff2a3ed9d5a50d84c7166376eeeebea8e3c157 (patch) | |
| tree | 9dbef25fac2995855678545c1d642ae54a461399 /core/encoding | |
| parent | bd502d16bcb312e45c4de9dbf8f8e5f0d568fa62 (diff) | |
Minor fix
Diffstat (limited to 'core/encoding')
| -rw-r--r-- | core/encoding/json/marshal.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/encoding/json/marshal.odin b/core/encoding/json/marshal.odin index 9c54f35f0..14df4c127 100644 --- a/core/encoding/json/marshal.odin +++ b/core/encoding/json/marshal.odin @@ -49,7 +49,7 @@ marshal_to_writer :: proc(w: io.Writer, v: any) -> (err: Marshal_Error) { unreachable() case runtime.Type_Info_Integer: - buf: [21]byte + buf: [40]byte u: u128 switch i in a { case i8: u = u128(i) |