Skip to content

Commit 1b44987

Browse files
committed
extmod/modutimeq: Fix warning about unused param.
1 parent 64b1d5f commit 1b44987

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

extmod/modutimeq.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ STATIC void heap_siftup(mp_obj_utimeq_t *heap, mp_uint_t pos) {
117117
}
118118

119119
STATIC mp_obj_t mod_utimeq_heappush(size_t n_args, const mp_obj_t *args) {
120+
(void)n_args;
120121
mp_obj_t heap_in = args[0];
121122
mp_obj_utimeq_t *heap = get_heap(heap_in);
122123
if (heap->len == heap->alloc) {

0 commit comments

Comments
 (0)