From c9bfb44c57e9d5ca2e75fa389b70eeb2e81e2285 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Sun, 26 Feb 2023 17:15:54 +0100 Subject: [PATCH] fixup! mem_pool: add GIT_TRACE_MEMPOOL support The `#include "trace.h"` that was implied until 15db4e7f4ac2 (treewide: remove unnecessary cache.h includes in source files, 2023-02-24) now needs to be made explicit. Signed-off-by: Johannes Schindelin --- mem-pool.c | 1 + 1 file changed, 1 insertion(+) diff --git a/mem-pool.c b/mem-pool.c index a961d71f2a..4685ef8fe6 100644 --- a/mem-pool.c +++ b/mem-pool.c @@ -4,6 +4,7 @@ #include "cache.h" #include "mem-pool.h" +#include "trace.h" static struct trace_key trace_mem_pool = TRACE_KEY_INIT(MEMPOOL); #define BLOCK_GROWTH_SIZE (1024 * 1024 - sizeof(struct mp_block))