From 0c7a2a5542eb0b06ae1312082c55b6b12337b9fe Mon Sep 17 00:00:00 2001 From: Mike Yuan Date: Sat, 13 Jul 2024 18:17:44 +0200 Subject: [PATCH] core/main: cast ignored retval of machine_id_setup() to void --- src/core/main.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/core/main.c b/src/core/main.c index 706f1ca41c4..25f58eb88c5 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -2371,10 +2371,12 @@ static int initialize_runtime( (void) import_credentials(); (void) os_release_status(); - (void) hostname_setup(true); + (void) hostname_setup(/* really = */ true); + (void) machine_id_setup(/* root = */ NULL, arg_machine_id, + (first_boot ? MACHINE_ID_SETUP_FORCE_TRANSIENT : 0) | + (arg_machine_id_from_firmware ? MACHINE_ID_SETUP_FORCE_FIRMWARE : 0), + /* ret_machine_id = */ NULL); - machine_id_setup(/* root= */ NULL, arg_machine_id, (first_boot ? MACHINE_ID_SETUP_FORCE_TRANSIENT : 0) | - (arg_machine_id_from_firmware ? MACHINE_ID_SETUP_FORCE_FIRMWARE : 0), /* ret_machine_id = */ NULL); (void) loopback_setup(); bump_unix_max_dgram_qlen(); bump_file_max_and_nr_open(); -- 2.47.3