summaryrefslogtreecommitdiff
path: root/src/firstboot
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2021-03-11 11:43:17 +0100
committerLennart Poettering <lennart@poettering.net>2021-03-26 12:21:14 +0100
commitf8fd093001ac6bf90e0a7c96c0cd451d8031f669 (patch)
tree65c4f900cf29d2ceefb5d39c2687129c7c40cdc5 /src/firstboot
parent361662f4341b5dc02e53feceb9518d5b85b549e9 (diff)
downloadsystemd-f8fd093001ac6bf90e0a7c96c0cd451d8031f669.tar.gz
firstboot: slightly reorder variable declaration
Let's put the locale fields which we process together next to each other.
Diffstat (limited to 'src/firstboot')
-rw-r--r--src/firstboot/firstboot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/firstboot/firstboot.c b/src/firstboot/firstboot.c
index 8e3028717e..42b9ca776f 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 = {};