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/lz77.c | |
parent | 0fad649af860bebdc3b4e422700b721c0f09007d (diff) |
Fixing many compiler warnings.
Diffstat (limited to 'src/compression/lz77.c')
-rw-r--r-- | src/compression/lz77.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/compression/lz77.c b/src/compression/lz77.c index 705e89d..eb80a55 100644 --- a/src/compression/lz77.c +++ b/src/compression/lz77.c @@ -313,6 +313,9 @@ void Ptngc_comp_from_lz77(unsigned int *data, int ndata, unsigned int *offsets, int noffsets, unsigned int *vals, int nvals) { + (void)ndata; + (void)nlens; + (void)noffsets; int i=0; int joff=0; int jdat=0; |