]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
Changed to int from BYTE
authorSen Huang <senhuang96@fb.com>
Wed, 16 Oct 2019 19:05:29 +0000 (15:05 -0400)
committerSen Huang <senhuang96@fb.com>
Wed, 16 Oct 2019 19:05:29 +0000 (15:05 -0400)
lib/compress/zstd_compress.c

index 4de67777f7d801e63d14dd0c6dc7ac2d448f9254..a8d2b3a4791aedf476f87dbaa73ce599344e1740 100644 (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)