From: Yu Watanabe Date: Fri, 17 Feb 2023 21:56:02 +0000 (+0900) Subject: hashmap: fix build with valgrind X-Git-Tag: v254-rc1~1241 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ebc19b154c12ca58aecca2087ca4fb9eb4095eaa;p=thirdparty%2Fsystemd.git hashmap: fix build with valgrind Follow-up for a2b052b29f8bc141e94a4af95d1653a38a57eaeb. --- diff --git a/src/basic/hashmap.c b/src/basic/hashmap.c index 75119866d4e..3d6d99e6ded 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