add HUGE sample uClibc for full LTP
[buildroot.git] / package / busybox / busybox-1.5.0-ps.patch
blobfcd35e2ddea9e538167791a4c3295de59aaf2d79
1 --- busybox-1.5.0/procps/ps.c Thu Mar 22 22:21:37 2007
2 +++ busybox-1.5.0-ps/procps/ps.c Wed Mar 28 23:57:34 2007
3 @@ -262,7 +262,9 @@
4 parse_o(default_o);
5 post_process();
7 - terminal_width = INT_MAX;
8 + /* Was INT_MAX, but some libc's go belly up with printf("%.*s")
9 + * and such large widths */
10 + terminal_width = 30000;
11 if (isatty(1)) {
12 get_terminal_width_height(1, &terminal_width, NULL);
13 terminal_width--;