summaryrefslogtreecommitdiff
path: root/depot.c
diff options
context:
space:
mode:
Diffstat (limited to 'depot.c')
-rw-r--r--depot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/depot.c b/depot.c
index b838b66c2..49fdfa21c 100644
--- a/depot.c
+++ b/depot.c
@@ -23,7 +23,7 @@ static void DepotPoolNewBlock(uint start_item)
for (d = GetDepot(start_item); d != NULL; d = (d->index + 1U < GetDepotPoolSize()) ? GetDepot(d->index + 1U) : NULL) d->index = start_item++;
}
-DEFINE_POOL(Depot, Depot, DepotPoolNewBlock, NULL)
+DEFINE_OLD_POOL(Depot, Depot, DepotPoolNewBlock, NULL)
/**