diff options
author | Michal Schmidt <mschmidt@redhat.com> | 2014-07-08 15:17:36 +0200 |
---|---|---|
committer | Michal Schmidt <mschmidt@redhat.com> | 2014-07-08 17:22:34 +0200 |
commit | b7bbdabeb4a5b66fdbcdfed0d097109cfb39c43e (patch) | |
tree | 2e0b3e86c848cb891832b9b40d696516b16dcef2 /src | |
parent | 154034270c4643b7cfe61c0be1676d78bb1b7b07 (diff) |
systemctl: fix visual alignment for lines prefixed with color dots
Diffstat (limited to 'src')
-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 1ab4794bd6..96a0d0578e 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -456,7 +456,7 @@ static int output_units_list(const UnitInfo *unit_infos, unsigned c) { } if (circle_len > 0) - printf("%s%s%s", on_circle, circle ? draw_special_char(DRAW_BLACK_CIRCLE) : " ", off_circle); + printf("%s%s%s ", on_circle, circle ? draw_special_char(DRAW_BLACK_CIRCLE) : " ", off_circle); printf("%s%-*s%s %s%-*s%s %s%-*s %-*s%s %-*s", on_active, id_len, id, off_active, |