From d2c562b803a4c49dbd5afb1717db095aae1557b1 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Mon, 10 Feb 2025 10:48:56 -0800 Subject: [PATCH] update hrlog comment --- lib/compress/zstd_ldm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compress/zstd_ldm.c b/lib/compress/zstd_ldm.c index 6aa6197e9..070551cad 100644 --- a/lib/compress/zstd_ldm.c +++ b/lib/compress/zstd_ldm.c @@ -147,7 +147,7 @@ void ZSTD_ldm_adjustParameters(ldmParams_t* params, } } else { assert(1 <= (int)cParams->strategy && (int)cParams->strategy <= 9); - /* mapping: strat1 -> rate8 ... strat9 -> rate4*/ + /* mapping from [fast, rate7] to [btultra2, rate4] */ params->hashRateLog = 7 - (cParams->strategy/3); } } -- 2.47.2