spelling-fixes, as of lintian.debian.org

This commit is contained in:
klemens
2016-05-16 22:23:24 +02:00
parent d9b3cca4d3
commit 268775dae8
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -116,7 +116,7 @@ size_t HUF_writeCTable (void* dst, size_t maxDstSize,
if (size >= 128) return ERROR(GENERIC); /* should never happen, since maxSymbolValue <= 255 */
if ((size <= 1) || (size >= maxSymbolValue/2)) {
if (size==1) { /* RLE */
/* only possible case : serie of 1 (because there are at least 2) */
/* only possible case : series of 1 (because there are at least 2) */
/* can only be 2^n or (2^n-1), otherwise not an huffman tree */
BYTE code;
switch(maxSymbolValue)