diff options
author | Ian Lee <Ian.rob.lee@Gmail.com> | 2016-06-21 15:10:31 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-06-21 16:10:31 +0200 |
commit | 7351ded5b956b841872a308b8d994b51f3cdd253 (patch) | |
tree | 1974564d4e0e1731a5875a968885475468657e84 /src/shared/bus-unit-util.c | |
parent | 6f696ca30cf722e6a36e9ff2823902e678603138 (diff) |
Do not ellipsize cgroups when showing slices in --full mode (#3560)
Do not ellipsize cgroups when showing slices in --full mode
Diffstat (limited to 'src/shared/bus-unit-util.c')
-rw-r--r-- | src/shared/bus-unit-util.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/shared/bus-unit-util.c b/src/shared/bus-unit-util.c index 6fc201b885..04471e2373 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; |