From 99ac1759dd429bd7995feff33dc683589c016c8e Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Thu, 1 Feb 2018 01:41:31 +0100 Subject: lzop: code shrink function old new delta lzo_decompress 526 524 -2 lzo_compress 473 470 -3 Signed-off-by: Denys Vlasenko --- archival/libarchive/lzo1x_d.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'archival/libarchive') diff --git a/archival/libarchive/lzo1x_d.c b/archival/libarchive/lzo1x_d.c index 40b167e68..43cf4a04e 100644 --- a/archival/libarchive/lzo1x_d.c +++ b/archival/libarchive/lzo1x_d.c @@ -31,8 +31,7 @@ ************************************************************************/ /* safe decompression with overrun testing */ int lzo1x_decompress_safe(const uint8_t* in, unsigned in_len, - uint8_t* out, unsigned* out_len, - void* wrkmem UNUSED_PARAM) + uint8_t* out, unsigned* out_len /*, void* wrkmem */) { register uint8_t* op; register const uint8_t* ip; -- cgit v1.2.3