aboutsummaryrefslogtreecommitdiff
path: root/src/libutil/error.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/libutil/error.cc')
-rw-r--r--src/libutil/error.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/error.cc b/src/libutil/error.cc
index da11d1ffd..0fad9ae42 100644
--- a/src/libutil/error.cc
+++ b/src/libutil/error.cc
@@ -105,7 +105,7 @@ void printCodeLines(std::ostream &out, const string &prefix, const NixCode &nixC
std::ostream& operator<<(std::ostream &out, const ErrorInfo &einfo)
{
- size_t errwidth = 80;
+ auto errwidth = std::max<size_t>(getWindowSize().second, 20);
string prefix = "";
string levelString;