]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
fixed : unused argument in printf
authorYann Collet <yann.collet.73@gmail.com>
Tue, 10 May 2016 13:30:43 +0000 (15:30 +0200)
committerYann Collet <yann.collet.73@gmail.com>
Tue, 10 May 2016 13:30:43 +0000 (15:30 +0200)
programs/zbufftest.c

index f1fa842ca9befd7bba2f233e1d8e3385ee85843b..f8d527ef2e0a3d6b6b8a51df00a0537a53a07b60 100644 (file)
@@ -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) {