From: Lennart Poettering Date: Tue, 12 May 2020 20:03:51 +0000 (+0200) Subject: systemctl: fix indentation of 'Active:' field in status output X-Git-Tag: v246-rc1~381 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=266dd5550532c2d04cbdeea5a135496b14139c13;p=thirdparty%2Fsystemd.git systemctl: fix indentation of 'Active:' field in status output Somehow two spaces got lost in d9e45bc3abb here, which made the status output all unaligned. Let's put them back in. --- diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index f7472c94b89..51cd0cf9d36 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -4182,7 +4182,7 @@ static void print_status_info( ss = streq_ptr(i->active_state, i->sub_state) ? NULL : i->sub_state; if (ss) - printf(" Active: %s%s (%s)%s", + printf(" Active: %s%s (%s)%s", active_on, strna(i->active_state), ss, active_off); else printf(" Active: %s%s%s",