Skip to content
Snippets Groups Projects
Commit ede7cf17 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

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

win32 systems
parent 2be8c7a4
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment