From: Lennart Poettering Date: Thu, 7 Mar 2019 15:40:06 +0000 (+0100) Subject: execute: (void)ify more X-Git-Tag: v242-rc1~158^2~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=44ffcbaea4fe323ab94448f25fe8e923524b120e;p=thirdparty%2Fsystemd.git execute: (void)ify more --- diff --git a/src/core/namespace.c b/src/core/namespace.c index d482c40c240..87e4a8a25fc 100644 --- a/src/core/namespace.c +++ b/src/core/namespace.c @@ -1661,14 +1661,14 @@ int setup_netns(int netns_storage_socket[static 2]) { netns = receive_one_fd(netns_storage_socket[0], MSG_DONTWAIT); if (netns == -EAGAIN) { - /* Nothing stored yet, so let's create a new namespace */ + /* Nothing stored yet, so let's create a new namespace. */ if (unshare(CLONE_NEWNET) < 0) { r = -errno; goto fail; } - loopback_setup(); + (void) loopback_setup(); netns = open("/proc/self/ns/net", O_RDONLY|O_CLOEXEC|O_NOCTTY); if (netns < 0) {