assume 79 columns instead of 80 in case we don't know, to better work on
authorDaniel Stenberg <daniel@haxx.se>
Mon, 31 Jan 2000 22:19:17 +0000 (22:19 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 31 Jan 2000 22:19:17 +0000 (22:19 +0000)
win32 systems

lib/progress.c

index 2e3f6e9..dc1073a 100644 (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)