From ed757c0cb03eef50e8d9aeb4682401c3e9486f0b Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 19 Oct 2012 00:06:47 +0200 Subject: util: unify line caching and column caching --- src/cgtop/cgtop.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/cgtop/cgtop.c') diff --git a/src/cgtop/cgtop.c b/src/cgtop/cgtop.c index ee421e383b..f2e62761f1 100644 --- a/src/cgtop/cgtop.c +++ b/src/cgtop/cgtop.c @@ -443,9 +443,9 @@ static int display(Hashmap *a) { qsort(array, n, sizeof(Group*), group_compare); - rows = fd_lines(STDOUT_FILENO); - if (rows <= 0) - rows = 25; + rows = lines(); + if (rows <= 10) + rows = 10; path_columns = columns() - 42; if (path_columns < 10) @@ -653,7 +653,7 @@ int main(int argc, char *argv[]) { goto finish; } - signal(SIGWINCH, columns_cache_reset); + signal(SIGWINCH, columns_lines_cache_reset); while (!quit) { Hashmap *c; -- cgit v1.2.3-54-g00ecf