From: Ian Lee Date: Tue, 21 Jun 2016 14:10:31 +0000 (+0100) Subject: Do not ellipsize cgroups when showing slices in --full mode (#3560) X-Git-Tag: v231~139 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7351ded5b956b841872a308b8d994b51f3cdd253;p=thirdparty%2Fsystemd.git Do not ellipsize cgroups when showing slices in --full mode (#3560) Do not ellipsize cgroups when showing slices in --full mode --- diff --git a/src/shared/bus-unit-util.c b/src/shared/bus-unit-util.c index 6fc201b8857..04471e23734 100644 --- a/src/shared/bus-unit-util.c +++ b/src/shared/bus-unit-util.c @@ -1123,7 +1123,8 @@ static int dump_processes( assert(n == cg->n_children); qsort_safe(children, n, sizeof(struct CGroupInfo*), cgroup_info_compare_func); - n_columns = MAX(LESS_BY(n_columns, 2U), 20U); + if (n_columns != 0) + n_columns = MAX(LESS_BY(n_columns, 2U), 20U); for (i = 0; i < n; i++) { _cleanup_free_ char *pp = NULL;