diff options
Diffstat (limited to 'tools/lz/repcomp.c')
-rw-r--r-- | tools/lz/repcomp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lz/repcomp.c b/tools/lz/repcomp.c index f2bbad8a..754529e8 100644 --- a/tools/lz/repcomp.c +++ b/tools/lz/repcomp.c @@ -7,7 +7,7 @@ (lowest bit to highest: repeat single byte (1), repeat two bytes (2), repeat zeros (3)). */ -struct command * try_compress_repetitions (const unsigned char * data, __attribute__((unused)) const unsigned char * bitflipped, unsigned short * size, unsigned flags) { +struct command * try_compress_repetitions (const unsigned char * data, const unsigned char * bitflipped, unsigned short * size, unsigned flags) { unsigned short pos = 0, skipped = 0; struct command * result = malloc(*size * sizeof(struct command)); struct command * current = result; |