commit 2ee32b237b2ca32a44543f7e32f3d1b2757115b8 from: Stefan Sperling date: Wed May 15 11:09:37 2019 UTC fix build with -DGOT_OBJ_CACHE_DEBUG commit - f6912001afdce535562e17bdaec333daedc2c2c3 commit + 2ee32b237b2ca32a44543f7e32f3d1b2757115b8 blob - d2e350b5272e2d79eb6f86e0568a4fcbcc2d3f5b blob + bcfd6ab617524e7ae1e16e51f72576174fcbe0b9 --- lib/object_cache.c +++ lib/object_cache.c @@ -224,6 +224,9 @@ got_object_cache_close(struct got_object_cache *cache) case GOT_OBJECT_CACHE_TYPE_COMMIT: print_cache_stats(cache, "commit"); break; + case GOT_OBJECT_CACHE_TYPE_TAG: + print_cache_stats(cache, "tag"); + break; } got_object_idset_for_each(cache->idset, check_refcount, cache);