diff --git a/src/racket/gc2/newgc.c b/src/racket/gc2/newgc.c index dee0bd431a..0474d6f747 100644 --- a/src/racket/gc2/newgc.c +++ b/src/racket/gc2/newgc.c @@ -3280,6 +3280,10 @@ static void repair_heap(NewGC *gc) break; case PAGE_ATOMIC: start += info->size; + break; + default: + printf("Unhandled info->type %i\n", info->type); + abort(); } info->mark = 0; #ifdef MZ_USE_PLACES