]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
fix typo
authorYann Collet <cyan@fb.com>
Tue, 4 Mar 2025 23:12:35 +0000 (15:12 -0800)
committerYann Collet <cyan@fb.com>
Tue, 4 Mar 2025 23:12:35 +0000 (15:12 -0800)
programs/zstdcli.c

index c84e33858fe70cda315be4866ccd915296d2b60f..e2771f5340cf2f649e49d4c5fa0ee4ef53e331db 100644 (file)
@@ -1089,7 +1089,7 @@ int main(int argCount, const char* argv[])
                 if (longCommandWArg(&argument, "--dictID")) { NEXT_UINT32(dictID); continue; }
                 if (longCommandWArg(&argument, "--zstd=")) { if (!parseCompressionParameters(argument, &compressionParams)) { badUsage(programName, originalArgument); CLEAN_RETURN(1); } ; cType = FIO_zstdCompression; continue; }
                 if (longCommandWArg(&argument, "--stream-size")) { NEXT_TSIZE(streamSrcSize); continue; }
-                if (longCommandWArg(&argument, "--target-compressedlock-size")) { NEXT_TSIZE(targetCBlockSize); continue; }
+                if (longCommandWArg(&argument, "--target-compressed-block-size")) { NEXT_TSIZE(targetCBlockSize); continue; }
                 if (longCommandWArg(&argument, "--size-hint")) { NEXT_TSIZE(srcSizeHint); continue; }
                 if (longCommandWArg(&argument, "--output-dir-flat")) {
                     NEXT_FIELD(outDirName);