From 100cc6fea7515f6c6706960678c7de6cdb438056 Mon Sep 17 00:00:00 2001 From: peter1138 Date: Tue, 18 Apr 2006 18:48:50 +0000 Subject: (svn r4471) - Pools: Add a facility for calling a custom function during pool block clean up. --- depot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'depot.c') diff --git a/depot.c b/depot.c index 2809d5d9f..8faf3b8bb 100644 --- a/depot.c +++ b/depot.c @@ -28,7 +28,7 @@ static void DepotPoolNewBlock(uint start_item) } /* Initialize the town-pool */ -MemoryPool _depot_pool = { "Depots", DEPOT_POOL_MAX_BLOCKS, DEPOT_POOL_BLOCK_SIZE_BITS, sizeof(Depot), &DepotPoolNewBlock, 0, 0, NULL }; +MemoryPool _depot_pool = { "Depots", DEPOT_POOL_MAX_BLOCKS, DEPOT_POOL_BLOCK_SIZE_BITS, sizeof(Depot), &DepotPoolNewBlock, NULL, 0, 0, NULL }; /** -- cgit v1.2.3-54-g00ecf