Skip to content

Commit ab052e6

Browse files
committed
Fix variable declaration.
1 parent 39f6515 commit ab052e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

miniz_tdef.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ static mz_bool tdefl_compress_lz_codes(tdefl_compressor *d)
476476
{
477477
mz_uint s0, s1, n0, n1, sym, num_extra_bits;
478478
mz_uint match_len = pLZ_codes[0];
479-
match_dist = (pLZ_codes[1] | (pLZ_codes[2] << 8));
479+
mz_uint match_dist = (pLZ_codes[1] | (pLZ_codes[2] << 8));
480480
pLZ_codes += 3;
481481

482482
MZ_ASSERT(d->m_huff_code_sizes[0][s_tdefl_len_sym[match_len]]);

0 commit comments

Comments
 (0)