From a13fda9e670b685a058af50b05e627a090574016 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 30 Jun 2025 23:12:36 +0200 Subject: [PATCH] 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. --- src/machine/machinectl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.47.3