diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2020-03-04 13:20:31 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2020-03-04 14:18:55 +0100 |
commit | df883de98a885da27ab2098e5712409e5bd8b18e (patch) | |
tree | 8293f1bb5250013bfbf70063196f45aa2f53c03e /src/core/main.c | |
parent | timesync, meson: allow statically linked build (diff) | |
download | systemd-df883de98a885da27ab2098e5712409e5bd8b18e.tar.xz systemd-df883de98a885da27ab2098e5712409e5bd8b18e.zip |
pid1, nspawn: voidify loopback_setup()
Diffstat (limited to 'src/core/main.c')
-rw-r--r-- | src/core/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/main.c b/src/core/main.c index 3baecc5f00..3c6b66e89c 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -1930,7 +1930,7 @@ static int initialize_runtime( status_welcome(); hostname_setup(); machine_id_setup(NULL, arg_machine_id, NULL); - loopback_setup(); + (void) loopback_setup(); bump_unix_max_dgram_qlen(); bump_file_max_and_nr_open(); test_usr(); |