diff options
| author | gingerBill <bill@gingerbill.org> | 2021-08-31 22:32:53 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-08-31 22:32:53 +0100 |
| commit | f57201bbd1f85772536e050b490a313ca62cb1b7 (patch) | |
| tree | 962ce81e9548d57f84cdab5cadd279f8172d0464 /core/compress/gzip | |
| parent | 2db6fea6655215452d445f327cadda815d65afd9 (diff) | |
Remove unneeded semicolons from the core library
Diffstat (limited to 'core/compress/gzip')
| -rw-r--r-- | core/compress/gzip/gzip.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/compress/gzip/gzip.odin b/core/compress/gzip/gzip.odin index 1ef7cc827..e49a12f1c 100644 --- a/core/compress/gzip/gzip.odin +++ b/core/compress/gzip/gzip.odin @@ -33,7 +33,7 @@ Header :: struct #packed { xfl: Compression_Flags, os: OS, } -#assert(size_of(Header) == 10); +#assert(size_of(Header) == 10) Header_Flag :: enum u8 { // Order is important |