Skip to content

Commit 9a8751b

Browse files
committed
gc: gc_dump_alloc_table(): Use '=' char for tail blocks.
'=' is pretty natural character for tail, and gives less dense picture where it's easier to see what object types are actually there.
1 parent 10503f3 commit 9a8751b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

py/gc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@ void gc_dump_alloc_table(void) {
768768
}
769769
break;
770770
}
771-
case AT_TAIL: c = 't'; break;
771+
case AT_TAIL: c = '='; break;
772772
case AT_MARK: c = 'm'; break;
773773
}
774774
mp_printf(&mp_plat_print, "%c", c);

0 commit comments

Comments
 (0)