From: Luca Boccassi Date: Sat, 28 Mar 2026 17:56:51 +0000 (+0000) Subject: imdsd: voidify unchecked call X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9bdc8c8138373810e2509d19d2de61cf059fdfc2;p=thirdparty%2Fsystemd.git imdsd: voidify unchecked call CID#1646046 Follow-up for eb6e5b07f13cefddf1f49e1f7bda4af22f5aba17 --- diff --git a/src/imds/imdsd.c b/src/imds/imdsd.c index 565f21cfaa6..68a03b7232c 100644 --- a/src/imds/imdsd.c +++ b/src/imds/imdsd.c @@ -275,7 +275,7 @@ static void context_reset_for_refresh(Context *c) { c->child_data = hashmap_free(c->child_data); c->data_size = 0; - sd_event_source_set_enabled(c->retry_source, SD_EVENT_OFF); + (void) sd_event_source_set_enabled(c->retry_source, SD_EVENT_OFF); } static void context_reset_full(Context *c) {