From 4f9f6a8517e63daa4251470ebffc2e937377027c Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sun, 16 Nov 2025 14:06:24 +0900 Subject: [PATCH] resolve: voidify one function call Fixes CID#1643235. --- src/resolve/resolved-hook.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resolve/resolved-hook.c b/src/resolve/resolved-hook.c index fb8342ecd6a..6940b7ef145 100644 --- a/src/resolve/resolved-hook.c +++ b/src/resolve/resolved-hook.c @@ -299,7 +299,7 @@ static void hook_recycle_varlink(Hook *h, sd_varlink *vl) { /* Disable any potential callbacks while we are recycling the thing */ sd_varlink_set_userdata(vl, NULL); - sd_varlink_bind_reply(vl, NULL); + (void) sd_varlink_bind_reply(vl, NULL); if (set_size(h->idle_links) > HOOK_IDLE_CONNECTIONS_MAX) return; -- 2.47.3