diff options
| author | Sébastien Marie <semarie@online.fr> | 2022-03-03 15:57:55 +0000 |
|---|---|---|
| committer | Sébastien Marie <semarie@online.fr> | 2022-03-03 15:57:55 +0000 |
| commit | dfe2c0a600aa3d78b56b5df54ba4c46620c59a4f (patch) | |
| tree | 45099d7066cf27a3df5d080af862290493932713 /core | |
| parent | fad851d80c4d2ded5eba6b766ca00d90893c73aa (diff) | |
remove some leftover semi-colons before EOF
Diffstat (limited to 'core')
| -rw-r--r-- | core/compress/common.odin | 2 | ||||
| -rw-r--r-- | core/compress/zlib/zlib.odin | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/compress/common.odin b/core/compress/common.odin index 8bc7d240d..04fcd3478 100644 --- a/core/compress/common.odin +++ b/core/compress/common.odin @@ -479,4 +479,4 @@ discard_to_next_byte_lsb_from_stream :: proc(z: ^Context_Stream_Input) { consume_bits_lsb(z, discard) } -discard_to_next_byte_lsb :: proc{discard_to_next_byte_lsb_from_memory, discard_to_next_byte_lsb_from_stream};
\ No newline at end of file +discard_to_next_byte_lsb :: proc{discard_to_next_byte_lsb_from_memory, discard_to_next_byte_lsb_from_stream} diff --git a/core/compress/zlib/zlib.odin b/core/compress/zlib/zlib.odin index d4c0f332c..d4b770929 100644 --- a/core/compress/zlib/zlib.odin +++ b/core/compress/zlib/zlib.odin @@ -677,4 +677,4 @@ inflate_from_byte_array_raw :: proc(input: []u8, buf: ^bytes.Buffer, raw := fals return inflate_raw(z=&ctx, expected_output_size=expected_output_size) } -inflate :: proc{inflate_from_context, inflate_from_byte_array};
\ No newline at end of file +inflate :: proc{inflate_from_context, inflate_from_byte_array} |