diff options
author | Lennart Poettering <lennart@poettering.net> | 2023-10-05 22:44:23 +0200 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@gmail.com> | 2023-10-06 00:23:52 +0200 |
commit | 3fe418a5713798112d19bfd689d33e39c60de927 (patch) | |
tree | 25247826b6ca1ba772e8b4d6113ba953ea03f388 /src/machine | |
parent | image-discover: skip properly over files that cannot be recognized as image f... (diff) | |
download | systemd-3fe418a5713798112d19bfd689d33e39c60de927.tar.xz systemd-3fe418a5713798112d19bfd689d33e39c60de927.zip |
machinectl: align UID shift status field properly
Diffstat (limited to 'src/machine')
-rw-r--r-- | src/machine/machinectl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/machine/machinectl.c b/src/machine/machinectl.c index 7746ecba1a..9b6a6cebda 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; } |