summaryrefslogtreecommitdiff
path: root/src/systemctl
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2019-11-27 14:52:30 +0100
committerLennart Poettering <lennart@poettering.net>2019-11-27 18:34:53 +0100
commita434236accc8bf072f919bb4c6e85b0dbc36e71f (patch)
tree8af80f11c75855224d63c9a6ce78c0ec8d95542f /src/systemctl
parent408c81f62454684dfbff1c95ce3210d06f256e58 (diff)
downloadsystemd-a434236accc8bf072f919bb4c6e85b0dbc36e71f.tar.gz
systemctl: fix indentation of cgroup tree
Follow-up for 0d588deae21234c9a9d64d9eddbcbe7da5c9a39d. In that commit the output got moved a 2 chars to the right, hence make sure to also shift the cgroup tree to the right, so that it gets properly aligned under the cgroup path again.
Diffstat (limited to 'src/systemctl')
-rw-r--r--src/systemctl/systemctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c
index 07357c6edc..619969c3da 100644
--- a/src/systemctl/systemctl.c
+++ b/src/systemctl/systemctl.c
@@ -4576,7 +4576,7 @@ static void print_status_info(
if (i->control_group) {
_cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
- static const char prefix[] = " ";
+ static const char prefix[] = " ";
unsigned c;
printf(" CGroup: %s\n", i->control_group);