diff options
Diffstat (limited to 'toys/posix')
-rw-r--r-- | toys/posix/ps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/ps.c b/toys/posix/ps.c index 33ab4945..a28118fa 100644 --- a/toys/posix/ps.c +++ b/toys/posix/ps.c @@ -1142,7 +1142,7 @@ static void shared_main(void) TT.ticks = sysconf(_SC_CLK_TCK); if (!TT.width) { - TT.width = (toys.which->name[1] == 's') ? 99999 : 80; + TT.width = 80; TT.height = 25; terminal_size(&TT.width, &TT.height); } |