From 91e93a9684a6ebd36c84acf137b4b803c6175fec Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 24 Jun 2017 16:36:05 +0300 Subject: extmod/moduzlib: decompress: Remove stale "(void)n_args". n_args is now actually used in this function. --- extmod/moduzlib.c | 1 - 1 file changed, 1 deletion(-) (limited to 'extmod/moduzlib.c') diff --git a/extmod/moduzlib.c b/extmod/moduzlib.c index a91405a93a..6e045c4034 100644 --- a/extmod/moduzlib.c +++ b/extmod/moduzlib.c @@ -143,7 +143,6 @@ STATIC const mp_obj_type_t decompio_type = { }; STATIC mp_obj_t mod_uzlib_decompress(size_t n_args, const mp_obj_t *args) { - (void)n_args; mp_obj_t data = args[0]; mp_buffer_info_t bufinfo; mp_get_buffer_raise(data, &bufinfo, MP_BUFFER_READ); -- cgit v1.2.3