diff options
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 7dd1d36..84ee1ca 100644 --- a/networking/wget.c +++ b/networking/wget.c @@ -54,9 +54,9 @@ enum { 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; } |