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:
Paul Sokolovsky 2016-05-13 00:16:38 +03:00
parent 10503f3534
commit 9a8751b006
1 changed files with 1 additions and 1 deletions

View File

@ -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);