]> git.ipfire.org Git - thirdparty/xz.git/commitdiff
xz: Fix a comment.
authorLasse Collin <lasse.collin@tukaani.org>
Sat, 26 Apr 2014 05:45:49 +0000 (08:45 +0300)
committerLasse Collin <lasse.collin@tukaani.org>
Sat, 26 Apr 2014 05:45:49 +0000 (08:45 +0300)
src/xz/coder.c

index e0867e2aa2952fc6451596cb194ed72d794b3476..017e04127e9522c0cae10207077a14420ceb7c9c 100644 (file)
@@ -200,9 +200,9 @@ coder_set_compression_settings(void)
        }
 
        if (memory_usage > memory_limit) {
-               // If --no-auto-adjust was used or we didn't find LZMA1 or
+               // If --no-adjust was used or we didn't find LZMA1 or
                // LZMA2 as the last filter, give an error immediately.
-               // --format=raw implies --no-auto-adjust.
+               // --format=raw implies --no-adjust.
                if (!opt_auto_adjust || opt_format == FORMAT_RAW)
                        memlimit_too_small(memory_usage);