From: Jesse Talavera-Greenberg Date: Tue, 13 Mar 2018 00:43:32 +0000 (-0400) Subject: Made -H's printout specify the semantics of -T0 X-Git-Tag: v1.3.4~1^2~32^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1042%2Fhead;p=thirdparty%2Fzstd.git Made -H's printout specify the semantics of -T0 --- diff --git a/programs/zstdcli.c b/programs/zstdcli.c index 3fd3282b1..9f8d4dea7 100644 --- a/programs/zstdcli.c +++ b/programs/zstdcli.c @@ -135,7 +135,7 @@ static int usage_advanced(const char* programName) DISPLAY( "--ultra : enable levels beyond %i, up to %i (requires more memory)\n", ZSTDCLI_CLEVEL_MAX, ZSTD_maxCLevel()); DISPLAY( "--long[=#] : enable long distance matching with given window log (default: %u)\n", g_defaultMaxWindowLog); #ifdef ZSTD_MULTITHREAD - DISPLAY( " -T# : spawns # compression threads (default: 1) \n"); + DISPLAY( " -T# : spawns # compression threads (default: 1, 0==# cores) \n"); DISPLAY( " -B# : select size of each job (default: 0==automatic) \n"); #endif DISPLAY( "--no-dictID : don't write dictID into header (dictionary compression)\n");