diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-10-09 12:47:42 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-10-09 12:47:42 (GMT) |
commit | ea37cbf48b84b75a9ec535af679d6104757e4271 (patch) | |
tree | 07df943c7ca93ff3200601fba71ef304a29ba275 /src/compression/huffmem.c | |
parent | 0fad649af860bebdc3b4e422700b721c0f09007d (diff) |
Fixing many compiler warnings.
Diffstat (limited to 'src/compression/huffmem.c')
-rw-r--r-- | src/compression/huffmem.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compression/huffmem.c b/src/compression/huffmem.c index 30ce2a7..d43bc19 100644 --- a/src/compression/huffmem.c +++ b/src/compression/huffmem.c @@ -242,6 +242,7 @@ void Ptngc_comp_huff_compress(unsigned int *vals, int nvals, void Ptngc_comp_huff_decompress(unsigned char *huffman, int huffman_len, unsigned int *vals) { + (void)huffman_len; int isvals16=(int)huffman[0]; unsigned int *vals16=NULL; int algo=(int)huffman[1]; |