From ebc19b154c12ca58aecca2087ca4fb9eb4095eaa Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sat, 18 Feb 2023 06:56:02 +0900 Subject: [PATCH] hashmap: fix build with valgrind Follow-up for a2b052b29f8bc141e94a4af95d1653a38a57eaeb. --- src/basic/hashmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/basic/hashmap.c b/src/basic/hashmap.c index 75119866d4..3d6d99e6de 100644 --- a/src/basic/hashmap.c +++ b/src/basic/hashmap.c @@ -298,7 +298,7 @@ void hashmap_trim_pools(void) { #if VALGRIND _destructor_ static void cleanup_pools(void) { /* Be nice to valgrind */ - hashmap_cleanup_pools(); + hashmap_trim_pools(); } #endif -- 2.25.1