From fda75c4c0802843a3a9264e74d91a1c1ce18810e Mon Sep 17 00:00:00 2001 From: nvt-se Date: Tue, 3 Feb 2009 16:21:53 +0000 Subject: [PATCH] Use the right type for pages in the directory cache. This makes the cache much smaller on most platforms. --- core/cfs/cfs-coffee.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/cfs/cfs-coffee.c b/core/cfs/cfs-coffee.c index 221851a9b..5be6429a5 100644 --- a/core/cfs/cfs-coffee.c +++ b/core/cfs/cfs-coffee.c @@ -109,7 +109,7 @@ struct file_desc { }; struct dir_cache { - coffee_offset_t page; + coffee_page_t page; char filename_start; };