py/gc: In sweep debug output, print pointer as a pointer.

Or it will be truncated on a 64-bit platform.
This commit is contained in:
Paul Sokolovsky 2017-12-09 01:54:01 +02:00
parent 5453d88d5d
commit dea3fb93c7
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ STATIC void gc_sweep(void) {
}
#endif
free_tail = 1;
DEBUG_printf("gc_sweep(%x)\n", PTR_FROM_BLOCK(block));
DEBUG_printf("gc_sweep(%p)\n", PTR_FROM_BLOCK(block));
#if MICROPY_PY_GC_COLLECT_RETVAL
MP_STATE_MEM(gc_collected)++;
#endif