diff options
Diffstat (limited to 'tools/lz/nullcomp.c')
-rw-r--r-- | tools/lz/nullcomp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lz/nullcomp.c b/tools/lz/nullcomp.c index 33d0b726..d4535bd3 100644 --- a/tools/lz/nullcomp.c +++ b/tools/lz/nullcomp.c @@ -6,7 +6,7 @@ Flags values: 0 = split a trailing 33-to-64-byte block at the end into two short blocks; 1 = don't */ -struct command * store_uncompressed (const unsigned char * data, const unsigned char * bitflipped, unsigned short * size, unsigned flags) { +struct command * store_uncompressed (__attribute__((unused)) const unsigned char * data, __attribute__((unused)) const unsigned char * bitflipped, unsigned short * size, unsigned flags) { unsigned short position, block, remainder = *size; struct command * result = NULL; *size = 0; |