diff options
author | Denis Vlasenko | 2006-10-27 09:03:24 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-27 09:03:24 +0000 |
commit | 621204bbf6750f1ba3977b43bb35375ddda6b5ae (patch) | |
tree | cd34a619db35dccb76043c1bf118d297e17ac436 /networking/wget.c | |
parent | d3d004dd3507f841745956a035fff68936378f9c (diff) | |
download | busybox-621204bbf6750f1ba3977b43bb35375ddda6b5ae.zip busybox-621204bbf6750f1ba3977b43bb35375ddda6b5ae.tar.gz |
get_terminal_width_height: do not pass insanely large values
Diffstat (limited to 'networking/wget.c')
-rw-r--r-- | networking/wget.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/wget.c b/networking/wget.c index 425abc1..c163209 100644 --- a/networking/wget.c +++ b/networking/wget.c @@ -676,7 +676,7 @@ getttywidth(void) { int width=0; get_terminal_width_height(0, &width, NULL); - return (width); + return width; } static void |