diff options
author | Conrad Meyer <cem@FreeBSD.org> | 2019-04-19 00:31:04 +0000 |
---|---|---|
committer | Conrad Meyer <cem@FreeBSD.org> | 2019-04-19 00:31:04 +0000 |
commit | 3f774a5e86430d45c78443d234a90ee54582564f (patch) | |
tree | 2ba6d7db94738038417c7384773435b12fbc5265 /lib/compress/fse_compress.c | |
parent | af73257b093737838d6086890c91f6ec13291ea7 (diff) |
Diffstat (limited to 'lib/compress/fse_compress.c')
-rw-r--r-- | lib/compress/fse_compress.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compress/fse_compress.c b/lib/compress/fse_compress.c index 60f357bbd24e1..68b47e1093515 100644 --- a/lib/compress/fse_compress.c +++ b/lib/compress/fse_compress.c @@ -129,9 +129,9 @@ size_t FSE_buildCTable_wksp(FSE_CTable* ct, { U32 position = 0; U32 symbol; for (symbol=0; symbol<=maxSymbolValue; symbol++) { - int nbOccurences; + int nbOccurrences; int const freq = normalizedCounter[symbol]; - for (nbOccurences=0; nbOccurences<freq; nbOccurences++) { + for (nbOccurrences=0; nbOccurrences<freq; nbOccurrences++) { tableSymbol[position] = (FSE_FUNCTION_TYPE)symbol; position = (position + step) & tableMask; while (position > highThreshold) |