From a434236accc8bf072f919bb4c6e85b0dbc36e71f Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 27 Nov 2019 14:52:30 +0100 Subject: [PATCH] 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. --- src/systemctl/systemctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.47.3