aboutsummaryrefslogtreecommitdiff
path: root/core/compress/common.odin
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-04-30 10:58:29 +0100
committergingerBill <bill@gingerbill.org>2021-04-30 10:58:29 +0100
commit5f617c56e17ce33ca9be5cfd051deb640fb8200b (patch)
treeed34915662f98b517565f26880858a48b68df551 /core/compress/common.odin
parent7ef30355cbf234aa48b6ee1ad013fb46af27d8dc (diff)
Minor stylistic code changes to compress and image packages
Diffstat (limited to 'core/compress/common.odin')
-rw-r--r--core/compress/common.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/compress/common.odin b/core/compress/common.odin
index 99b054903..11b5b74b3 100644
--- a/core/compress/common.odin
+++ b/core/compress/common.odin
@@ -200,4 +200,4 @@ read_bits_no_refill_lsb :: #force_inline proc(z: ^Context, width: u8) -> u32 {
discard_to_next_byte_lsb :: proc(z: ^Context) {
discard := u8(z.num_bits & 7);
consume_bits_lsb(z, discard);
-} \ No newline at end of file
+}