1
0
mirror of https://github.com/facebook/zstd.git synced 2025-08-08 17:22:10 +03:00

fixed doc on cLevel default, reported by Oliver Lange

This commit is contained in:
Yann Collet
2016-07-24 01:21:53 +02:00
parent f8e7b5363f
commit 10b9c13d07
4 changed files with 14 additions and 15 deletions

View File

@@ -43,7 +43,7 @@ It also features a very fast decoder, with speed > 500 MB/s per core.
.SH OPTIONS
.TP
.B \-#
# compression level [1-22] (default:1)
# compression level [1-22] (default:3)
.TP
.BR \-d ", " --decompress
decompression

View File

@@ -115,7 +115,7 @@ static int usage(const char* programName)
DISPLAY( " with no FILE, or when FILE is - , read standard input\n");
DISPLAY( "Arguments :\n");
#ifndef ZSTD_NOCOMPRESS
DISPLAY( " -# : # compression level (1-%u, default:1) \n", ZSTD_maxCLevel());
DISPLAY( " -# : # compression level (1-%u, default:%u) \n", ZSTD_maxCLevel(), ZSTDCLI_CLEVEL_DEFAULT);
#endif
#ifndef ZSTD_NODECOMPRESS
DISPLAY( " -d : decompression \n");