From de4c04f6c219ea475af46f83c0b17d856d1c4cb5 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Tue, 2 Aug 2016 11:27:05 +0200 Subject: [PATCH] Fixed : ZSTD_compress* can compress > 4 GB in a single pass, reported by Nick Terrell --- programs/bench.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/bench.c b/programs/bench.c index 98e79add..167085a1 100644 --- a/programs/bench.c +++ b/programs/bench.c @@ -101,7 +101,7 @@ void BMK_setAdditionalParam(int additionalParam) { g_additionalParam=additionalP void BMK_SetNbIterations(unsigned nbLoops) { g_nbIterations = nbLoops; - DISPLAYLEVEL(2, "- %i iterations -\n", g_nbIterations); + DISPLAYLEVEL(3, "- test >= %i seconds per compression / decompression -\n", g_nbIterations); } void BMK_SetBlockSize(size_t blockSize)