Merge pull request #1001 from ne-sted/fix-defaults-align

cli: fix align of defaults
This commit is contained in:
Yann Collet
2018-01-24 09:34:36 -08:00
committed by GitHub
4 changed files with 21 additions and 21 deletions
+1 -1
View File
@@ -157,7 +157,7 @@ Dictionary builder :
--dictID=# : force dictionary ID to specified value (default: random) --dictID=# : force dictionary ID to specified value (default: random)
Benchmark arguments : Benchmark arguments :
-b# : benchmark file(s), using # compression level (default : 1) -b# : benchmark file(s), using # compression level (default: 3)
-e# : test all compression levels from -bX to # (default: 1) -e# : test all compression levels from -bX to # (default: 1)
-i# : minimum evaluation time in seconds (default: 3s) -i# : minimum evaluation time in seconds (default: 3s)
-B# : cut file into independent blocks of size # (default: no block) -B# : cut file into independent blocks of size # (default: no block)
+1 -1
View File
@@ -177,7 +177,7 @@ static int usage_advanced(const char* programName)
#ifndef ZSTD_NOBENCH #ifndef ZSTD_NOBENCH
DISPLAY( "\n"); DISPLAY( "\n");
DISPLAY( "Benchmark arguments : \n"); DISPLAY( "Benchmark arguments : \n");
DISPLAY( " -b# : benchmark file(s), using # compression level (default : 1) \n"); DISPLAY( " -b# : benchmark file(s), using # compression level (default: %d) \n", ZSTDCLI_CLEVEL_DEFAULT);
DISPLAY( " -e# : test all compression levels from -bX to # (default: 1)\n"); DISPLAY( " -e# : test all compression levels from -bX to # (default: 1)\n");
DISPLAY( " -i# : minimum evaluation time in seconds (default: 3s) \n"); DISPLAY( " -i# : minimum evaluation time in seconds (default: 3s) \n");
DISPLAY( " -B# : cut file into independent blocks of size # (default: no block)\n"); DISPLAY( " -B# : cut file into independent blocks of size # (default: no block)\n");