From: Lennart Poettering Date: Fri, 5 Apr 2013 18:19:54 +0000 (+0200) Subject: systemctl: tweak drop-in display X-Git-Tag: v201~34 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=5a8e9427a6db2af25c1ae628ad6caea0c64a11ec 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...) --- 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)); }