diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-04-08 03:49:12 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-04-08 03:49:12 +0200 |
commit | 4f320e4d73220c192714896ece07e56682ac1462 (patch) | |
tree | c3727b2a53b1e8b86a2da22ee9c6c07edda4ef2a /systemctl.vala | |
parent | b8c597d5d21e83966bdee8a701e6d994aaf650ee (diff) |
systemctl: minor output fix
Diffstat (limited to 'systemctl.vala')
-rw-r--r-- | systemctl.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/systemctl.vala b/systemctl.vala index 4f017e02e7..22a971cc82 100644 --- a/systemctl.vala +++ b/systemctl.vala @@ -117,7 +117,7 @@ int main (string[] args) { stdout.printf("%-45s %-6s %-12s", i.id, i.load_state, i.active_state); if (i.job_id != 0) - stdout.printf("→ %-15s", i.job_type); + stdout.printf(" → %-15s", i.job_type); stdout.puts("\n"); n++; |