summaryrefslogtreecommitdiff
path: root/src/qcommon/huffman.c
diff options
context:
space:
mode:
authorZack Middleton <zturtleman@gmail.com>2012-06-18 16:31:16 +0000
committerTim Angus <tim@ngus.net>2013-01-12 20:31:33 +0000
commit3a8f5c5225a6eefb1613f082c078670c643cc7e8 (patch)
tree65202e3a0580ca3e4edde6b5d5f53e71c70c3b38 /src/qcommon/huffman.c
parentbe7a6f69aa019960319e5701cb6793292be34cfd (diff)
REFACTOR [a vs an]
From /dev/humancontroller.
Diffstat (limited to 'src/qcommon/huffman.c')
-rw-r--r--src/qcommon/huffman.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qcommon/huffman.c b/src/qcommon/huffman.c
index f230c96a..7bd433d3 100644
--- a/src/qcommon/huffman.c
+++ b/src/qcommon/huffman.c
@@ -363,7 +363,7 @@ void Huff_Decompress(msg_t *mbuf, int offset) {
for ( j = 0; j < cch; j++ ) {
ch = 0;
// don't overflow reading from the messages
- // FIXME: would it be better to have a overflow check in get_bit ?
+ // FIXME: would it be better to have an overflow check in get_bit ?
if ( (bloc >> 3) > size ) {
seq[j] = 0;
break;