Commit 2e58ef23 authored by John Esmet's avatar John Esmet

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

parent bf494843
...@@ -322,6 +322,8 @@ static const char *strategy_str(block_allocator::allocation_strategy strategy) { ...@@ -322,6 +322,8 @@ static const char *strategy_str(block_allocator::allocation_strategy strategy) {
return "best-fit"; return "best-fit";
case block_allocator::allocation_strategy::BA_STRATEGY_HEAT_ZONE: case block_allocator::allocation_strategy::BA_STRATEGY_HEAT_ZONE:
return "heat-zone"; return "heat-zone";
case block_allocator::allocation_strategy::BA_STRATEGY_PADDED_FIT:
return "padded-fit";
default: default:
abort(); 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