]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
removed testing artifacts
authorPrzemyslaw Skibinski <inikep@gmail.com>
Fri, 2 Dec 2016 14:19:00 +0000 (15:19 +0100)
committerPrzemyslaw Skibinski <inikep@gmail.com>
Fri, 2 Dec 2016 14:19:00 +0000 (15:19 +0100)
programs/fileio.c

index 317483a96602f97591e84f8c5833745ffc8712f3..06728ae31cc8598956ef93d9406feecf6ed76bee 100644 (file)
@@ -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);
         }
     }