From 9a8751b006231bcc311c2d2c079f6cb7c8d2405e Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Fri, 13 May 2016 00:16:38 +0300 Subject: [PATCH] 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. --- py/gc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/gc.c b/py/gc.c index 0a6b14bfef..0e1e4a7d32 100644 --- a/py/gc.c +++ b/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);