diff --git a/extmod/modutimeq.c b/extmod/modutimeq.c index a3863b7553..0412b21a41 100644 --- a/extmod/modutimeq.c +++ b/extmod/modutimeq.c @@ -117,6 +117,7 @@ STATIC void heap_siftup(mp_obj_utimeq_t *heap, mp_uint_t pos) { } STATIC mp_obj_t mod_utimeq_heappush(size_t n_args, const mp_obj_t *args) { + (void)n_args; mp_obj_t heap_in = args[0]; mp_obj_utimeq_t *heap = get_heap(heap_in); if (heap->len == heap->alloc) {