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.
pull/2036/head
Paul Sokolovsky 2016-05-13 00:16:38 +03:00
rodzic 10503f3534
commit 9a8751b006
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

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