mirror of
https://github.com/facebook/zstd
synced 2026-08-22 22:32:07 -04:00
update man
This commit is contained in:
parent
6e1e545916
commit
6a8715f8d4
2 changed files with 8 additions and 2 deletions
|
|
@ -1540,7 +1540,12 @@ int main(int argCount, const char* argv[])
|
|||
/* check compression level limits */
|
||||
{ int const maxCLevel = ultra ? ZSTD_maxCLevel() : ZSTDCLI_CLEVEL_MAX;
|
||||
if (cLevel > maxCLevel) {
|
||||
DISPLAYLEVEL(2, "Warning : compression level higher than max, reduced to %i \n", maxCLevel);
|
||||
DISPLAYLEVEL(2, "Warning : compression level higher than max, reduced to %i. ", maxCLevel);
|
||||
DISPLAYLEVEL(2, "Specify --ultra to raise the limit to 22 and use "
|
||||
"--long=31 for maximum compression. Note that this "
|
||||
"requires high amounts of memory, and the resulting data "
|
||||
"might be rejected by third-party decoders and is "
|
||||
"therefore only recommended for archival purposes. \n");
|
||||
cLevel = maxCLevel;
|
||||
} }
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue