GC - add sanity check default case

This commit is contained in:
Kevin Tew 2010-04-26 14:25:39 -06:00
parent c56fb66fa0
commit ac8aa01a48

View File

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