mirror of
https://github.com/facebook/zstd.git
synced 2025-07-30 22:23:13 +03:00
print one global summary (instead of one per file)
This commit is contained in:
2
NEWS
2
NEWS
@ -2,6 +2,8 @@ v1.1.1
|
|||||||
New : command -M#, --memory=, --memlimit=, --memlimit-decompress= to limit allowed memory consumption
|
New : command -M#, --memory=, --memlimit=, --memlimit-decompress= to limit allowed memory consumption
|
||||||
New : doc/zstd_manual.html, by Przemyslaw Skibinski
|
New : doc/zstd_manual.html, by Przemyslaw Skibinski
|
||||||
Improved : slightly better compression ratio at --ultra levels (>= 20)
|
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
|
Changed : zstd_errors.h is now part of include installation
|
||||||
Fixed : zstd-small, zstd-compress and zstd-decompress compilation targets
|
Fixed : zstd-small, zstd-compress and zstd-decompress compilation targets
|
||||||
|
|
||||||
|
@ -121,9 +121,6 @@ static void compressFile_orDie(resources ress, const char* fname, const char* ou
|
|||||||
|
|
||||||
fclose_orDie(fout);
|
fclose_orDie(fout);
|
||||||
fclose_orDie(fin);
|
fclose_orDie(fin);
|
||||||
|
|
||||||
/* success */
|
|
||||||
printf("%-30s -> %-30s \n", fname, outName);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -159,5 +156,8 @@ int main(int argc, const char** argv)
|
|||||||
}
|
}
|
||||||
|
|
||||||
freeResources(ress);
|
freeResources(ress);
|
||||||
|
/* success */
|
||||||
|
printf("compressed %i files \n", argc-1);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user