]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
firstboot: slightly reorder variable declaration
authorLennart Poettering <lennart@poettering.net>
Thu, 11 Mar 2021 10:43:17 +0000 (11:43 +0100)
committerLennart Poettering <lennart@poettering.net>
Fri, 26 Mar 2021 11:21:14 +0000 (12:21 +0100)
Let's put the locale fields which we process together next to each
other.

src/firstboot/firstboot.c

index 8e3028717e79dbccc4d07acb3e93d9e331befabb..42b9ca776f92c904ba141b974948c4c37358cc79 100644 (file)
@@ -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 = {};