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.
This commit is contained in:
parent
10503f3534
commit
9a8751b006
2
py/gc.c
2
py/gc.c
@ -768,7 +768,7 @@ void gc_dump_alloc_table(void) {
|
||||
}
|
||||
break;
|
||||
}
|
||||
case AT_TAIL: c = 't'; break;
|
||||
case AT_TAIL: c = '='; break;
|
||||
case AT_MARK: c = 'm'; break;
|
||||
}
|
||||
mp_printf(&mp_plat_print, "%c", c);
|
||||
|
Loading…
x
Reference in New Issue
Block a user