diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2021-09-14 11:46:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-14 11:46:34 +0200 |
commit | a4ae601b44be6c0ca44e24047f83bf4e0323d82e (patch) | |
tree | 6ad1fe18314adf92e5e8f74de6abd6b0e2b03d43 /src/libutil/fmt.hh | |
parent | 16d4922dd2057e35ffb1b94ecd9e84d1876c41ba (diff) | |
parent | 58b5036c547bc2ad214e63fec5f322725fc63d67 (diff) |
Merge pull request #5245 from edolstra/warnings
Change warning messages from yellow to magenta
Diffstat (limited to 'src/libutil/fmt.hh')
-rw-r--r-- | src/libutil/fmt.hh | 2 |
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> |