Skip to content

Commit

Permalink
fixed minor conversion warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyan4973 committed Oct 28, 2024
1 parent 37706a6 commit fcbf6b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/compress/zstd_compress.c
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down

0 comments on commit fcbf6b0

Please sign in to comment.