Changed to int from BYTE

This commit is contained in:
Sen Huang
2019-10-21 15:36:12 -04:00
parent bb2df8c499
commit f0fccc8847
+1 -1
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)