From: Yu Watanabe Date: Sun, 16 Nov 2025 05:06:24 +0000 (+0900) Subject: resolve: voidify one function call X-Git-Tag: v259-rc1~37^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4f9f6a8517e63daa4251470ebffc2e937377027c;p=thirdparty%2Fsystemd.git resolve: voidify one function call Fixes CID#1643235. --- 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;