diff --git a/src/cache.c b/src/cache.c index 3b19f859e..06d7ce881 100644 --- a/src/cache.c +++ b/src/cache.c @@ -45,11 +45,11 @@ struct applet http_cache_applet; struct flt_ops cache_ops; struct cache { - char id[33]; /* cache name */ - unsigned int maxage; /* max-age */ - unsigned int maxblocks; - struct list list; /* cache linked list */ + struct list list; /* cache linked list */ struct eb_root entries; /* head of cache entries based on keys */ + unsigned int maxage; /* max-age */ + unsigned int maxblocks; + char id[33]; /* cache name */ }; /*