aboutsummaryrefslogtreecommitdiff
path: root/src/libutil/fmt.hh
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2021-09-14 10:38:10 +0200
committerEelco Dolstra <edolstra@gmail.com>2021-09-14 10:42:29 +0200
commit4ffda0af7c645af88925eec589c819b4a51cdef6 (patch)
tree7cbcd9092de69d42f01a0b46ab2cb8727031563e /src/libutil/fmt.hh
parent9bfdd556cffb46bf0c8d8105c992e029d9c01dd3 (diff)
ANSI_YELLOW -> ANSI_WARNING
Diffstat (limited to 'src/libutil/fmt.hh')
-rw-r--r--src/libutil/fmt.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/fmt.hh b/src/libutil/fmt.hh
index 85c0e9429..fd335b811 100644
--- a/src/libutil/fmt.hh
+++ b/src/libutil/fmt.hh
@@ -82,7 +82,7 @@ struct yellowtxt
template <class T>
std::ostream & operator<<(std::ostream & out, const yellowtxt<T> & y)
{
- return out << ANSI_YELLOW << y.value << ANSI_NORMAL;
+ return out << ANSI_WARNING << y.value << ANSI_NORMAL;
}
template <class T>