1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-02-12 21:57:27 +03:00

machinectl: align UID shift status field properly

(cherry picked from commit 3fe418a5713798112d19bfd689d33e39c60de927)
(cherry picked from commit 4252deebe741b6f5bb15f325e511bdeb351e2f71)
This commit is contained in:
Lennart Poettering 2023-10-05 22:44:23 +02:00 committed by Luca Boccassi
parent c145e530c0
commit 282e359e73

View File

@ -474,7 +474,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;
}