From 5a8e9427a6db2af25c1ae628ad6caea0c64a11ec Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 5 Apr 2013 20:19:54 +0200 Subject: [PATCH] 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...) --- src/systemctl/systemctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index 6a4c968f9..e445b50ab 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)); } -- 2.30.2