Skip to content

Commit

Permalink
gc: gc_dump_alloc_table(): Use '=' char for tail blocks.
Browse files Browse the repository at this point in the history
'=' is pretty natural character for tail, and gives less dense picture
where it's easier to see what object types are actually there.
  • Loading branch information
pfalcon committed May 12, 2016
1 parent 10503f3 commit 9a8751b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/gc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 9a8751b

Please sign in to comment.