From f8fd093001ac6bf90e0a7c96c0cd451d8031f669 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 11 Mar 2021 11:43:17 +0100 Subject: [PATCH] firstboot: slightly reorder variable declaration Let's put the locale fields which we process together next to each other. --- src/firstboot/firstboot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 = {}; -- 2.47.3