From ede7cf175e78d2be2c31bc469ad69d4e9073c1d1 Mon Sep 17 00:00:00 2001
From: Daniel Stenberg <daniel@haxx.se>
Date: Mon, 31 Jan 2000 22:19:17 +0000
Subject: [PATCH] assume 79 columns instead of 80 in case we don't know, to
 better work on win32 systems

---
 lib/progress.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/progress.c b/lib/progress.c
index 2e3f6e9759..dc1073a017 100644
--- a/lib/progress.c
+++ b/lib/progress.c
@@ -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)
-- 
GitLab