From 1b44987d0ca72fb877026fc96681f064c8fb2b2f Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Thu, 22 Dec 2016 00:48:19 +0300 Subject: [PATCH] extmod/modutimeq: Fix warning about unused param. --- extmod/modutimeq.c | 1 + 1 file changed, 1 insertion(+) 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) {