From: Lennart Poettering Date: Mon, 27 Nov 2023 14:00:12 +0000 (+0100) Subject: logind: align columns of a table X-Git-Tag: v255-rc4~40^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=082dd188d24766a5577b26d0386bbac76cbd5aaa;p=thirdparty%2Fsystemd.git logind: align columns of a table --- diff --git a/src/login/logind-user.c b/src/login/logind-user.c index 641050f8ba5..c6133077f0c 100644 --- a/src/login/logind-user.c +++ b/src/login/logind-user.c @@ -861,12 +861,12 @@ void user_update_last_session_timer(User *u) { } static const char* const user_state_table[_USER_STATE_MAX] = { - [USER_OFFLINE] = "offline", - [USER_OPENING] = "opening", + [USER_OFFLINE] = "offline", + [USER_OPENING] = "opening", [USER_LINGERING] = "lingering", - [USER_ONLINE] = "online", - [USER_ACTIVE] = "active", - [USER_CLOSING] = "closing" + [USER_ONLINE] = "online", + [USER_ACTIVE] = "active", + [USER_CLOSING] = "closing" }; DEFINE_STRING_TABLE_LOOKUP(user_state, UserState);