From: Lennart Poettering Date: Thu, 11 Mar 2021 10:43:17 +0000 (+0100) Subject: firstboot: slightly reorder variable declaration X-Git-Tag: v249-rc1~507^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f8fd093001ac6bf90e0a7c96c0cd451d8031f669;p=thirdparty%2Fsystemd.git firstboot: slightly reorder variable declaration Let's put the locale fields which we process together next to each other. --- diff --git a/src/firstboot/firstboot.c b/src/firstboot/firstboot.c index 8e3028717e7..42b9ca776f9 100644 --- a/src/firstboot/firstboot.c +++ b/src/firstboot/firstboot.c @@ -43,8 +43,8 @@ static char *arg_root = NULL; static char *arg_image = NULL; static char *arg_locale = NULL; /* $LANG */ -static char *arg_keymap = NULL; static char *arg_locale_messages = NULL; /* $LC_MESSAGES */ +static char *arg_keymap = NULL; static char *arg_timezone = NULL; static char *arg_hostname = NULL; static sd_id128_t arg_machine_id = {};