From 76f713dfa47f803ef843ea2ae86ab2db2eea37d6 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 12 Oct 2018 18:47:28 +0200 Subject: [PATCH] sd-ndisc: voidify sd_ndisc_stop() call CID 1395839 --- src/libsystemd-network/sd-ndisc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsystemd-network/sd-ndisc.c b/src/libsystemd-network/sd-ndisc.c index 126a2929a9..6f0e2ca0df 100644 --- a/src/libsystemd-network/sd-ndisc.c +++ b/src/libsystemd-network/sd-ndisc.c @@ -301,7 +301,7 @@ static int ndisc_timeout(sd_event_source *s, uint64_t usec, void *userdata) { return 0; fail: - sd_ndisc_stop(nd); + (void) sd_ndisc_stop(nd); return 0; }