From: Yi Jin Date: Mon, 17 Dec 2018 05:27:52 +0000 (-0800) Subject: comment out printf() to make output terse X-Git-Tag: v1.3.8~24^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a951ee9fe1f157f0e2d611ef9152c146abe1f5bb;p=thirdparty%2Fzstd.git comment out printf() to make output terse --- diff --git a/examples/multiple_simple_compression.c b/examples/multiple_simple_compression.c index ab128bbb3..2401a99b6 100644 --- a/examples/multiple_simple_compression.c +++ b/examples/multiple_simple_compression.c @@ -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)