From 040637ebaa43be908207df18a37d8df77a460d16 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 23 May 2025 15:32:35 +0200 Subject: [PATCH] machinectl: fix indentation of status output field One field is differently aligned then the others in the "status" output. Fix that. --- 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 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; } -- 2.47.3