diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-07-13 10:10:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-13 10:10:22 +0200 |
commit | d7026cc57117db7b5aa67131eb01b57cf4690b5e (patch) | |
tree | 735c377061d27715e44e995da8451f47f954514c | |
parent | 8efa23bb996161af74f89401902450e51e9d4b54 (diff) | |
parent | 64f03635d763bd627f4fb8516c04eb64e881c902 (diff) |
Merge pull request #3805 from Ma27/ansi-color-fix
Fix ANSI color constants
-rw-r--r-- | src/libutil/ansicolor.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libutil/ansicolor.hh b/src/libutil/ansicolor.hh index a38c2d798..ae741f867 100644 --- a/src/libutil/ansicolor.hh +++ b/src/libutil/ansicolor.hh @@ -11,7 +11,7 @@ namespace nix { #define ANSI_GREEN "\e[32;1m" #define ANSI_YELLOW "\e[33;1m" #define ANSI_BLUE "\e[34;1m" -#define ANSI_MAGENTA "\e[35m;1m" -#define ANSI_CYAN "\e[36m;1m" +#define ANSI_MAGENTA "\e[35;1m" +#define ANSI_CYAN "\e[36;1m" } |