diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-18 22:28:26 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-18 22:28:26 +0000 |
commit | 5599502a550a7f892d4b73dceb2105a6916f83e6 (patch) | |
tree | 572ffa27892b1b24db86930044077dbb1565840f /networking/wget.c | |
parent | e125a683a77d14401644d15f38b7f578db723924 (diff) | |
download | busybox-w32-5599502a550a7f892d4b73dceb2105a6916f83e6.tar.gz busybox-w32-5599502a550a7f892d4b73dceb2105a6916f83e6.tar.bz2 busybox-w32-5599502a550a7f892d4b73dceb2105a6916f83e6.zip |
more -Wall warning fixes. -Wall is enabled now.
Diffstat (limited to 'networking/wget.c')
-rw-r--r-- | networking/wget.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/wget.c b/networking/wget.c index 7dd1d36f9..84ee1ca3e 100644 --- a/networking/wget.c +++ b/networking/wget.c | |||
@@ -54,9 +54,9 @@ enum { | |||
54 | STALLTIME = 5 /* Seconds when xfer considered "stalled" */ | 54 | STALLTIME = 5 /* Seconds when xfer considered "stalled" */ |
55 | }; | 55 | }; |
56 | 56 | ||
57 | static int getttywidth(void) | 57 | static unsigned int getttywidth(void) |
58 | { | 58 | { |
59 | int width; | 59 | unsigned width; |
60 | get_terminal_width_height(0, &width, NULL); | 60 | get_terminal_width_height(0, &width, NULL); |
61 | return width; | 61 | return width; |
62 | } | 62 | } |