diff options
author | rpaulo <rpaulo@FreeBSD.org> | 2012-12-13 06:45:45 +0000 |
---|---|---|
committer | rpaulo <rpaulo@FreeBSD.org> | 2012-12-13 06:45:45 +0000 |
commit | c884fec161808c88cc1dfa7517cde9e34cbbd7a7 (patch) | |
tree | 87877e2772e5b9493863aa512718a1a5754426db /contrib/top | |
parent | d831a64524c4b32b700f0bb535dfecb06a9ee573 (diff) | |
download | FreeBSD-src-c884fec161808c88cc1dfa7517cde9e34cbbd7a7.zip FreeBSD-src-c884fec161808c88cc1dfa7517cde9e34cbbd7a7.tar.gz |
Bump MAX_COLS to 512 to take advantage of wider terminals.
Diffstat (limited to 'contrib/top')
-rw-r--r-- | contrib/top/top.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/top/top.h b/contrib/top/top.h index a281957..c51485a 100644 --- a/contrib/top/top.h +++ b/contrib/top/top.h @@ -14,7 +14,7 @@ extern int Header_lines; /* 7 */ /* Maximum number of columns allowed for display */ -#define MAX_COLS 128 +#define MAX_COLS 512 /* Log base 2 of 1024 is 10 (2^10 == 1024) */ #define LOG1024 10 |