From: Bimba Shrestha Date: Mon, 20 Apr 2020 18:34:24 +0000 (-0700) Subject: updating chainlog bound X-Git-Tag: v1.4.5^2~60^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b640802ff885aa38563a7b293142e07111f1fa60;p=thirdparty%2Fzstd.git updating chainlog bound --- diff --git a/programs/fileio.c b/programs/fileio.c index 62f31f300..98a25d94d 100644 --- a/programs/fileio.c +++ b/programs/fileio.c @@ -816,7 +816,7 @@ static void FIO_adjustParamsForPatchFromMode(FIO_prefs_t* const prefs, DISPLAYLEVEL(1, "[Optimal parser notes] Consider the following to improve patch size at the cost of speed:\n"); DISPLAYLEVEL(1, "- Use --single-thread mode in the zstd cli\n"); DISPLAYLEVEL(1, "- Set a larger targetLength (eg. --zstd=targetLength=4096)\n"); - DISPLAYLEVEL(1, "- Set a larger chainLog (eg. --zstd=chainLog=31)\n"); + DISPLAYLEVEL(1, "- Set a larger chainLog (eg. --zstd=chainLog=%u)\n", ZSTD_CHAINLOG_MAX); DISPLAYLEVEL(1, "Also consdier playing around with searchLog and hashLog\n"); } }