diff options
author | Lennart Poettering <lennart@poettering.net> | 2019-11-27 14:52:30 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2019-11-27 18:34:53 +0100 |
commit | a434236accc8bf072f919bb4c6e85b0dbc36e71f (patch) | |
tree | 8af80f11c75855224d63c9a6ce78c0ec8d95542f /src/systemctl/systemctl.c | |
parent | cryptsetup: reduce the chance that we will be OOM killed (diff) | |
download | systemd-a434236accc8bf072f919bb4c6e85b0dbc36e71f.tar.xz systemd-a434236accc8bf072f919bb4c6e85b0dbc36e71f.zip |
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 '')
-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 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); |