From: Lennart Poettering Date: Wed, 27 Nov 2019 13:52:30 +0000 (+0100) Subject: systemctl: fix indentation of cgroup tree X-Git-Tag: v244~21 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a434236accc8bf072f919bb4c6e85b0dbc36e71f;p=thirdparty%2Fsystemd.git 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. --- diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index 07357c6edc8..619969c3da0 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);