commit | 5599502a550a7f892d4b73dceb2105a6916f83e6 | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Sun May 18 22:28:26 2008 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Sun May 18 22:28:26 2008 +0000 |
tree | 572ffa27892b1b24db86930044077dbb1565840f | |
parent | e125a683a77d14401644d15f38b7f578db723924 [diff] [blame] |
more -Wall warning fixes. -Wall is enabled now.
diff --git a/networking/wget.c b/networking/wget.c index 7dd1d36..84ee1ca 100644 --- a/networking/wget.c +++ b/networking/wget.c
@@ -54,9 +54,9 @@ STALLTIME = 5 /* Seconds when xfer considered "stalled" */ }; -static int getttywidth(void) +static unsigned int getttywidth(void) { - int width; + unsigned width; get_terminal_width_height(0, &width, NULL); return width; }