From e921a00d41ef79a28c037fa5de605be0152679bf Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 21 Apr 2022 10:37:12 +0200 Subject: [PATCH] main: voidify call to kmod_setup() --- src/core/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.47.3