From: Michal Schmidt Date: Tue, 17 Jan 2012 11:50:42 +0000 (+0100) Subject: util: fix ANSI sequence for red color X-Git-Tag: v39~39 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=281605bf141ce9e428577d57ed5204ec06755d8d util: fix ANSI sequence for red color Red turned green by mistake in commit c1072ea0. --- diff --git a/src/util.h b/src/util.h index 5413490c1..590dc1781 100644 --- a/src/util.h +++ b/src/util.h @@ -70,7 +70,7 @@ typedef struct dual_timestamp { #define FORMAT_BYTES_MAX 8 #define ANSI_HIGHLIGHT_ON "\x1B[1;39m" -#define ANSI_HIGHLIGHT_RED_ON "\x1B[1;32m" +#define ANSI_HIGHLIGHT_RED_ON "\x1B[1;31m" #define ANSI_HIGHLIGHT_GREEN_ON "\x1B[1;32m" #define ANSI_HIGHLIGHT_OFF "\x1B[0m"