Commit cb8e2f02 authored by stijn's avatar stijn Committed by Damien George

py/gc: Fix debug printing of pointer.

When DEBUG_printf is the standard printf, compilers require the value for
%p to be an actual pointer instead of an integer.
parent c2b5bfcc
......@@ -294,7 +294,7 @@ STATIC void gc_sweep(void) {
}
#endif
free_tail = 1;
DEBUG_printf("gc_sweep(%p)\n", PTR_FROM_BLOCK(block));
DEBUG_printf("gc_sweep(%p)\n", (void *)PTR_FROM_BLOCK(block));
#if MICROPY_PY_GC_COLLECT_RETVAL
MP_STATE_MEM(gc_collected)++;
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment