diff options
Diffstat (limited to 'extmod/moduzlib.c')
-rw-r--r-- | extmod/moduzlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extmod/moduzlib.c b/extmod/moduzlib.c index 2a07f008f4..3d945abba5 100644 --- a/extmod/moduzlib.c +++ b/extmod/moduzlib.c @@ -49,7 +49,7 @@ STATIC int mod_uzlib_grow_buf(TINF_DATA *d, unsigned alloc_req) { return 0; } -STATIC mp_obj_t mod_uzlib_decompress(mp_uint_t n_args, const mp_obj_t *args) { +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; |