diff options
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; |