From: Sen Huang Date: Wed, 16 Oct 2019 19:05:29 +0000 (-0400) Subject: Changed to int from BYTE X-Git-Tag: v1.4.4~1^2~15^2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f7d26b0eec5eff6fc30a3927f80bd317f8e763a;p=thirdparty%2Fzstd.git Changed to int from BYTE --- diff --git a/lib/compress/zstd_compress.c b/lib/compress/zstd_compress.c index 4de67777f..a8d2b3a47 100644 --- a/lib/compress/zstd_compress.c +++ b/lib/compress/zstd_compress.c @@ -50,7 +50,7 @@ struct ZSTD_CDict_s { ZSTD_compressedBlockState_t cBlockState; ZSTD_customMem customMem; U32 dictID; - BYTE compressionLevel; /* 0 indicates that advanced API was used to select CDict params */ + int compressionLevel; /* 0 indicates that advanced API was used to select CDict params */ }; /* typedef'd to ZSTD_CDict within "zstd.h" */ ZSTD_CCtx* ZSTD_createCCtx(void)