summaryrefslogtreecommitdiff
path: root/src/win95/huffman.cpp
diff options
context:
space:
mode:
authorSteven Fuller <relnev@icculus.org>2001-12-18 02:23:39 +0000
committerPatryk Obara <dreamer.tan@gmail.com>2019-08-20 02:22:37 +0200
commit95b8b49b7602e4e2d3cd9e38273fa94451bec780 (patch)
tree2680f7beffc79957bb057cb018d4d7bc5c8ff2a3 /src/win95/huffman.cpp
parentabab1011ac9f80ca3b734bd70415ff255965441b (diff)
More Warning cleanups (Tim Beckmann)
Diffstat (limited to 'src/win95/huffman.cpp')
-rw-r--r--src/win95/huffman.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/win95/huffman.cpp b/src/win95/huffman.cpp
index 64100e1..b9523d9 100644
--- a/src/win95/huffman.cpp
+++ b/src/win95/huffman.cpp
@@ -162,7 +162,7 @@ static void MakeHuffTreeFromHuffItems(HuffNode *base, HuffItem *source, int coun
{
temp[n].bits = source[n].Count;
}
- while (upperlim = --count)
+ while ((upperlim = --count))
{
if (temp[0].zero)
temp[0].zero->parent = temp[0].one->parent = movdest;