From: Lennart Poettering Date: Thu, 5 Oct 2023 20:44:23 +0000 (+0200) Subject: machinectl: align UID shift status field properly X-Git-Tag: v255-rc1~317 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3fe418a5713798112d19bfd689d33e39c60de927;p=thirdparty%2Fsystemd.git machinectl: align UID shift status field properly --- diff --git a/src/machine/machinectl.c b/src/machine/machinectl.c index 7746ecba1a1..9b6a6cebda7 100644 --- a/src/machine/machinectl.c +++ b/src/machine/machinectl.c @@ -475,7 +475,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; }