summaryrefslogtreecommitdiff
path: root/src/basic/hashmap.c
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2023-02-18 06:56:02 +0900
committerLuca Boccassi <luca.boccassi@gmail.com>2023-02-17 22:56:37 +0000
commitebc19b154c12ca58aecca2087ca4fb9eb4095eaa (patch)
tree541a043ed3e8c4e528215b6485ef1627f3b14626 /src/basic/hashmap.c
parent1ec9b722586379fb468de5717d6bde77c492a5a7 (diff)
downloadsystemd-ebc19b154c12ca58aecca2087ca4fb9eb4095eaa.tar.gz
hashmap: fix build with valgrind
Follow-up for a2b052b29f8bc141e94a4af95d1653a38a57eaeb.
Diffstat (limited to 'src/basic/hashmap.c')
-rw-r--r--src/basic/hashmap.c2
1 files changed, 1 insertions, 1 deletions
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