aboutsummaryrefslogtreecommitdiff
path: root/src/xz/options.c
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2010-09-04 23:14:44 +0300
committerLasse Collin <lasse.collin@tukaani.org>2010-09-04 23:14:44 +0300
commitef840950ad99cf2955c754875af0e01acf125079 (patch)
treebb5058f4ba1da72ee7c02b7deb624792de62d873 /src/xz/options.c
parentxz: Use lzma_lzma_preset() to initialize the options structure. (diff)
downloadxz-ef840950ad99cf2955c754875af0e01acf125079.tar.xz
xz: Fix grammar.
Diffstat (limited to '')
-rw-r--r--src/xz/options.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/xz/options.c b/src/xz/options.c
index 710de3b0..379a2e46 100644
--- a/src/xz/options.c
+++ b/src/xz/options.c
@@ -352,8 +352,7 @@ options_lzma(const char *str)
parse_options(str, opts, &set_lzma, options);
if (options->lc + options->lp > LZMA_LCLP_MAX)
- message_fatal(_("The sum of lc and lp must be at "
- "maximum of 4"));
+ message_fatal(_("The sum of lc and lp must not exceed 4"));
const uint32_t nice_len_min = options->mf & 0x0F;
if (options->nice_len < nice_len_min)