From: Yann Collet Date: Tue, 10 May 2016 13:30:43 +0000 (+0200) Subject: fixed : unused argument in printf X-Git-Tag: v0.6.1^2~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b12b3698173fd9ee93f2e6191f74a415dd541a04;p=thirdparty%2Fzstd.git fixed : unused argument in printf --- diff --git a/programs/zbufftest.c b/programs/zbufftest.c index f1fa842ca..f8d527ef2 100644 --- a/programs/zbufftest.c +++ b/programs/zbufftest.c @@ -189,7 +189,7 @@ static int basicUnitTests(U32 seed, double compressibility) } /* Byte-by-byte decompression test */ - DISPLAYLEVEL(4, "test%3i : decompress byte-by-byte : ", testNb++, COMPRESSIBLE_NOISE_LENGTH); + DISPLAYLEVEL(4, "test%3i : decompress byte-by-byte : ", testNb++); ZBUFF_decompressInitDictionary(zd, CNBuffer, 128 KB); { size_t r = 1, pIn=0, pOut=0; while (r) {