Merge pull request #241 from systoolz/patch-1

missing const in declaration
This commit is contained in:
Martin Raiber 2022-08-25 21:59:05 +02:00 committed by GitHub
commit 11f77193b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -337,7 +337,7 @@ static void tdefl_optimize_huffman_table(tdefl_compressor *d, int table_num, int
} \ } \
} }
static mz_uint8 s_tdefl_packed_code_size_syms_swizzle[] = { 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 }; static const mz_uint8 s_tdefl_packed_code_size_syms_swizzle[] = { 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 };
static void tdefl_start_dynamic_block(tdefl_compressor *d) static void tdefl_start_dynamic_block(tdefl_compressor *d)
{ {