Merge pull request #879 from terrelln/block-size

[libzstd] Set CLEVEL_CUSTOM correctly
This commit is contained in:
Yann Collet
2017-10-02 14:51:47 -07:00
committed by GitHub
+1
View File
@@ -240,6 +240,7 @@ static ZSTD_CCtx_params ZSTD_assignParamsToCCtxParams(
ZSTD_CCtx_params ret = cctxParams;
ret.cParams = params.cParams;
ret.fParams = params.fParams;
ret.compressionLevel = ZSTD_CLEVEL_CUSTOM;
return ret;
}