summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/util/huffman.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2009-12-28 09:04:00 +0000
committer Aaron Giles <aaron@aarongiles.com>2009-12-28 09:04:00 +0000
commitbd24fb23c10ca9fbf63e2191dc8e58a87b83b325 (patch)
tree5ba5c3cffeb38fb8f492e030130268c4bcbafb4d /src/lib/util/huffman.c
parent6763b10bf005f0bcd1ba23e440d652b31dcac447 (diff)
Results of running the latest srcclean.
Diffstat (limited to 'src/lib/util/huffman.c')
-rw-r--r--src/lib/util/huffman.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/huffman.c b/src/lib/util/huffman.c
index 3eee846a019..a03f192e580 100644
--- a/src/lib/util/huffman.c
+++ b/src/lib/util/huffman.c
@@ -189,7 +189,7 @@ struct _huffman_context
UINT8 prevdata; /* value of the previous data (for delta-RLE encoding) */
UINT32 datahisto[MAX_HUFFMAN_CODES]; /* histogram of data values */
int rleremaining; /* number of RLE bytes remaining (for delta-RLE encoding) */
- huffman_node huffnode[MAX_HUFFMAN_NODES]; /* array of nodes */
+ huffman_node huffnode[MAX_HUFFMAN_NODES]; /* array of nodes */
huffman_lookup_value * lookup; /* pointer to the lookup table */
};