comment out printf() to make output terse

This commit is contained in:
Yi Jin 2018-12-16 21:27:52 -08:00
parent 595401e4c7
commit a951ee9fe1

View 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)