From 4ac8bcc29a4ad5bb908b692baa040e7c7eb21249 Mon Sep 17 00:00:00 2001 From: entrpntr Date: Thu, 28 May 2020 06:44:10 -0400 Subject: Checkpoint where things mostly work. --- tools/lz/repcomp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/lz/repcomp.c') 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; -- cgit v1.2.3