Commit f680b2cc authored by John Esmet's avatar John Esmet

FT-309 Fix replay tool to not crash when replaying padded-fit

parent ff647c87
......@@ -322,6 +322,8 @@ static const char *strategy_str(block_allocator::allocation_strategy strategy) {
return "best-fit";
case block_allocator::allocation_strategy::BA_STRATEGY_HEAT_ZONE:
return "heat-zone";
case block_allocator::allocation_strategy::BA_STRATEGY_PADDED_FIT:
return "padded-fit";
default:
abort();
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment