more -Wall warning fixes. -Wall is enabled now.

This commit is contained in:
Denis Vlasenko
2008-05-18 22:28:26 +00:00
parent e125a683a7
commit 5599502a55
14 changed files with 34 additions and 35 deletions

View File

@@ -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;
}