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~5^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f0fccc8847dcd2e279a215a4d8024e46e32f8de6;p=thirdparty%2Fzstd.git Changed to int from BYTE --- diff --git a/lib/compress/zstd_compress.c b/lib/compress/zstd_compress.c index d0b01c073..2daa588f1 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)