From: Lennart Poettering Date: Thu, 21 Apr 2022 08:37:12 +0000 (+0200) Subject: main: voidify call to kmod_setup() X-Git-Tag: v251-rc2~87 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e921a00d41ef79a28c037fa5de605be0152679bf;p=thirdparty%2Fsystemd.git main: voidify call to kmod_setup() --- diff --git a/src/core/main.c b/src/core/main.c index 438405bda27..80426984316 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -2779,7 +2779,7 @@ int main(int argc, char *argv[]) { /* Load the kernel modules early. */ if (!skip_setup) - kmod_setup(); + (void) kmod_setup(); /* Mount /proc, /sys and friends, so that /proc/cmdline and /proc/$PID/fd is available. */ r = mount_setup(loaded_policy, skip_setup);