summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/util/huffman.c
diff options
context:
space:
mode:
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 */
};