diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-04-05 20:19:54 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-04-05 20:19:54 +0200 |
commit | 5a8e9427a6db2af25c1ae628ad6caea0c64a11ec (patch) | |
tree | b058235f4408d9d32ef042e05e18c3ed23346e7e /src/systemctl/systemctl.c | |
parent | 45a4f72337f3fe26e0a07301238ccbe8eec8893c (diff) |
systemctl: tweak drop-in display
So far we didn't place spaces between the box drawing chars and the
values next to them. Let's be consistent here.
(Or to turn this around: if we really want to place a space there we
probably should do that in all our tree outputs, not just here...)
Diffstat (limited to 'src/systemctl/systemctl.c')
-rw-r--r-- | src/systemctl/systemctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index 6a4c968f98..e445b50ab8 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -2349,7 +2349,7 @@ static void print_status_info(UnitStatusInfo *i) { return; } - printf("%s\n %*s %s ", dir, maxlen, "", + printf("%s\n %*s %s", dir, maxlen, "", draw_special_char(DRAW_TREE_RIGHT)); } |