Changed to int from BYTE

dev
Sen Huang 2019-10-16 15:05:29 -04:00
parent cf00ea367a
commit 4f7d26b0ee
1 changed files with 1 additions and 1 deletions

View File

@ -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)