From 510cff3570862eba04a09dd72c23298346902177 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Thu, 16 Jun 2016 16:39:55 +0200 Subject: [PATCH] minor comment change --- lib/common/fse.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/common/fse.h b/lib/common/fse.h index 6be3e5aa0..e711d0135 100644 --- a/lib/common/fse.h +++ b/lib/common/fse.h @@ -132,8 +132,8 @@ size_t FSE_count(unsigned* count, unsigned* maxSymbolValuePtr, const void* src, /*! FSE_optimalTableLog(): dynamically downsize 'tableLog' when conditions are met. It saves CPU time, by using smaller tables, while preserving or even improving compression ratio. - @return : recommended tableLog (necessarily <= initial 'tableLog') */ -unsigned FSE_optimalTableLog(unsigned tableLog, size_t srcSize, unsigned maxSymbolValue); + @return : recommended tableLog (necessarily <= 'maxTableLog') */ +unsigned FSE_optimalTableLog(unsigned maxTableLog, size_t srcSize, unsigned maxSymbolValue); /*! FSE_normalizeCount(): normalize counts so that sum(count[]) == Power_of_2 (2^tableLog) -- 2.47.2