update man

This commit is contained in:
Jennifer Lee
2026-03-04 13:29:20 -08:00
parent 6e1e545916
commit 6a8715f8d4
2 changed files with 8 additions and 2 deletions
+6 -1
View File
@@ -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