From 00eb3fcb7a19a38d5ca94f4dcbda149f16e73a6e Mon Sep 17 00:00:00 2001
From: Ben Burdette <bburdette@gmail.com>
Date: Fri, 27 Mar 2020 10:13:46 -0600
Subject: [PATCH] more cleanup

---
 src/libutil/error.cc | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/libutil/error.cc b/src/libutil/error.cc
index d6595070f..9194539a5 100644
--- a/src/libutil/error.cc
+++ b/src/libutil/error.cc
@@ -104,13 +104,13 @@ void printErrorInfo(ErrorInfo &einfo)
       }
     default: 
       {
-        levelString = "wat:";  
+        levelString = format("invalid error level: %1%") % einfo.level;  
         break;
       }
   }
 
   int ndl = prefix.length() + levelString.length() + 3 + einfo.name.length() + einfo.programName.value_or("").length();
-  int dashwidth = ndl > (errwidth - 3) ? 3 : 80 - ndl; 
+  int dashwidth = ndl > (errwidth - 3) ? 3 : errwidth - ndl; 
 
   string dashes;
   for (int i = 0; i < dashwidth; ++i)
@@ -161,7 +161,6 @@ void printErrorInfo(ErrorInfo &einfo)
     cout << prefix << *einfo.hint << endl;
     cout << prefix << endl;
   }
-
 }
 
 }
-- 
GitLab