From: Lennart Poettering Date: Fri, 23 May 2025 13:32:35 +0000 (+0200) Subject: machinectl: fix indentation of status output field X-Git-Tag: v258-rc1~492 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=040637ebaa43be908207df18a37d8df77a460d16;p=thirdparty%2Fsystemd.git machinectl: fix indentation of status output field One field is differently aligned then the others in the "status" output. Fix that. --- diff --git a/src/machine/machinectl.c b/src/machine/machinectl.c index 2411a85050d..d8dbaa09c53 100644 --- a/src/machine/machinectl.c +++ b/src/machine/machinectl.c @@ -484,7 +484,7 @@ static int print_uid_shift(sd_bus *bus, const char *name) { if (shift == 0) /* Don't show trivial mappings */ return 0; - printf(" UID Shift: %" PRIu32 "\n", shift); + printf(" UID Shift: %" PRIu32 "\n", shift); return 0; }