assume 79 columns instead of 80 in case we don't know, to better work on

win32 systems
This commit is contained in:
Daniel Stenberg 2000-01-31 22:19:17 +00:00
parent 2be8c7a4e9
commit ede7cf175e
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ void ProgressInit(struct UrlData *data, int max)
if (curl_GetEnv("COLUMNS") != NULL)
width = atoi(curl_GetEnv("COLUMNS"));
else
width = 80;
width = 79;
progressmax = max;
if(-1 == max)