From: Yann Collet Date: Thu, 16 Jun 2016 14:39:55 +0000 (+0200) Subject: minor comment change X-Git-Tag: v0.7.0^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F212%2Fhead;p=thirdparty%2Fzstd.git minor comment change --- 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)