]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
print one global summary (instead of one per file)
authorYann Collet <cyan@fb.com>
Thu, 27 Oct 2016 01:37:29 +0000 (18:37 -0700)
committerYann Collet <cyan@fb.com>
Thu, 27 Oct 2016 01:37:29 +0000 (18:37 -0700)
NEWS
examples/multiple_streaming_compression.c

diff --git a/NEWS b/NEWS
index 2e6118648af581654a500856f1b7efd0e433c00d..2c2585f00f633beb72936ad16028110b83e616ea 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,8 @@ v1.1.1
 New : command -M#, --memory=, --memlimit=, --memlimit-decompress= to limit allowed memory consumption
 New : doc/zstd_manual.html, by Przemyslaw Skibinski
 Improved : slightly better compression ratio at --ultra levels (>= 20)
+Added : ZSTD_initCStream_usingCDict(), ZSTD_initDStream_usingDDict() (experimental section)
+Added : example/multiple_streaming_compression
 Changed : zstd_errors.h is now part of include installation
 Fixed : zstd-small, zstd-compress and zstd-decompress compilation targets
 
index 81541f590360ef8cb51bac373dcece7ec838f4bc..c002a887247ad5705ea174da43e89c62ccd570a4 100644 (file)
@@ -121,9 +121,6 @@ static void compressFile_orDie(resources ress, const char* fname, const char* ou
 
     fclose_orDie(fout);
     fclose_orDie(fin);
-
-    /* success */
-    printf("%-30s -> %-30s \n", fname, outName);
 }
 
 
@@ -159,5 +156,8 @@ int main(int argc, const char** argv)
     }
 
     freeResources(ress);
+    /* success */
+    printf("compressed %i files \n", argc-1);
+
     return 0;
 }