From: Przemyslaw Skibinski Date: Fri, 2 Dec 2016 14:19:00 +0000 (+0100) Subject: removed testing artifacts X-Git-Tag: v1.1.2~46^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e49580407d2b4ed9a4864837235438948929b67;p=thirdparty%2Fzstd.git removed testing artifacts --- diff --git a/programs/fileio.c b/programs/fileio.c index 317483a96..06728ae31 100644 --- a/programs/fileio.c +++ b/programs/fileio.c @@ -733,11 +733,10 @@ static int FIO_decompressSrcFile(dRess_t ress, const char* srcFileName) if (buf[0] == 31 && buf[1] == 139) { /* gz header */ #ifdef ZSTD_GZDECOMPRESS size_t const result = FIO_decompressGzFile(ress, toRead, srcFileName, srcFile); - printf("result=%d\n", (int)result); if (result == 0) return 1; filesize += result; #else - DISPLAYLEVEL(1, "zstd: %s: gzip file cannot be uncompressed (zstd compiled without ZSTD_GZDECOMPRESS) -- ignored \n", srcFileName); + DISPLAYLEVEL(1, "zstd: %s: gzip file cannot be uncompressed -- ignored (zstd compiled without ZSTD_GZDECOMPRESS) \n", srcFileName); return 1; #endif } else { @@ -753,7 +752,6 @@ static int FIO_decompressSrcFile(dRess_t ress, const char* srcFileName) } } filesize += FIO_decompressFrame(ress, dstFile, srcFile, toRead, filesize); } - printf("filesize=%d\n", (int)filesize); } }