diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2021-09-14 10:41:26 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2021-09-14 10:42:29 +0200 |
commit | 58b5036c547bc2ad214e63fec5f322725fc63d67 (patch) | |
tree | c361233349bcde6ba442fd555acc51d39f17fe2c | |
parent | 4ffda0af7c645af88925eec589c819b4a51cdef6 (diff) |
Change warnings from yellow to magenta
This matches gcc and clang.
-rw-r--r-- | src/libutil/ansicolor.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/ansicolor.hh b/src/libutil/ansicolor.hh index d65bc58e8..38305e71c 100644 --- a/src/libutil/ansicolor.hh +++ b/src/libutil/ansicolor.hh @@ -9,7 +9,7 @@ namespace nix { #define ANSI_ITALIC "\e[3m" #define ANSI_RED "\e[31;1m" #define ANSI_GREEN "\e[32;1m" -#define ANSI_WARNING "\e[33;1m" +#define ANSI_WARNING "\e[35;1m" #define ANSI_BLUE "\e[34;1m" #define ANSI_MAGENTA "\e[35;1m" #define ANSI_CYAN "\e[36;1m" |