mirror of
https://github.com/facebook/zstd.git
synced 2025-11-27 00:05:09 -05:00
fixed minor conversion warning
This commit is contained in:
parent
37706a677c
commit
fcbf6b014a
@ -4521,7 +4521,7 @@ static size_t ZSTD_optimalBlockSize(ZSTD_CCtx* cctx, const void* src, size_t src
|
||||
* Note: as a consequence, the first full block is not split.
|
||||
*/
|
||||
if (savings < 3) {
|
||||
DEBUGLOG(6, "don't attempt splitting: savings (%lli) too low", savings);
|
||||
DEBUGLOG(6, "don't attempt splitting: savings (%i) too low", (int)savings);
|
||||
return 128 KB;
|
||||
}
|
||||
/* apply @splitLevel, or use default value (which depends on @strat).
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user