]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
comment out printf() to make output terse
authorYi Jin <yijinru@gmail.com>
Mon, 17 Dec 2018 05:27:52 +0000 (21:27 -0800)
committerYi Jin <yijinru@gmail.com>
Mon, 17 Dec 2018 05:27:52 +0000 (21:27 -0800)
examples/multiple_simple_compression.c

index ab128bbb3624f0887e43f96f8c3e2b1639915985..2401a99b64365e2bea7c17f82b42dd1b1c18b98b 100644 (file)
@@ -78,7 +78,7 @@ static void compressFile_orDie(resources ress, const char* fname, const char* on
     saveFile_orDie(oname, ress.cBuffer, cSize);
 
     /* success */
-    printf("%25s : %6u -> %7u - %s \n", fname, (unsigned)fSize, (unsigned)cSize, oname);
+    // printf("%25s : %6u -> %7u - %s \n", fname, (unsigned)fSize, (unsigned)cSize, oname);
 }
 
 int main(int argc, const char** argv)