From: Lennart Poettering Date: Mon, 30 Jun 2025 21:12:36 +0000 (+0200) Subject: machinectl: fix status output indentation X-Git-Tag: v258-rc1~140^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a13fda9e670b685a058af50b05e627a090574016;p=thirdparty%2Fsystemd.git machinectl: fix status output indentation All other status output lines use tabs, use that for the ID shift line too. otherwise output will appear unaligned if log viewers have fixed tab stop positions. --- diff --git a/src/machine/machinectl.c b/src/machine/machinectl.c index 20fe2d1b0ff..116d5ef74d9 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("\tID Shift: %" PRIu32 "\n", shift); return 0; }