Skip to content

Commit 18f12ca

Browse files
committed
extmod/modutimeq: Fix printf in dump().
1 parent 1e9093f commit 18f12ca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extmod/modutimeq.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ STATIC MP_DEFINE_CONST_FUN_OBJ_2(mod_utimeq_heappop_obj, mod_utimeq_heappop);
162162
STATIC mp_obj_t mod_utimeq_dump(mp_obj_t heap_in) {
163163
mp_obj_utimeq_t *heap = get_heap(heap_in);
164164
for (int i = 0; i < heap->len; i++) {
165-
printf(UINT_FMT "\t%p\t%p(%p)\n", heap->items[i].time,
165+
printf(UINT_FMT "\t%p\t%p\n", heap->items[i].time,
166166
MP_OBJ_TO_PTR(heap->items[i].callback), MP_OBJ_TO_PTR(heap->items[i].args));
167167
}
168168
return mp_const_none;

0 commit comments

Comments
 (0)