Skip to content

Commit

Permalink
Cast enum value to int
Browse files Browse the repository at this point in the history
  • Loading branch information
uroni committed Aug 5, 2024
1 parent 8e8e609 commit 1ff82be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miniz_tdef.h
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ extern "C"
enum
{
TDEFL_LZ_CODE_BUF_SIZE = 64 * 1024,
TDEFL_OUT_BUF_SIZE = (TDEFL_LZ_CODE_BUF_SIZE * 13) / 10,
TDEFL_OUT_BUF_SIZE = (mz_uint)((TDEFL_LZ_CODE_BUF_SIZE * 13) / 10),
TDEFL_MAX_HUFF_SYMBOLS = 288,
TDEFL_LZ_HASH_BITS = 15,
TDEFL_LEVEL1_HASH_SIZE_MASK = 4095,
Expand Down

0 comments on commit 1ff82be

Please sign in to comment.