summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Schmidt <mschmidt@redhat.com>2012-01-17 12:50:42 +0100
committerMichal Schmidt <mschmidt@redhat.com>2012-01-17 12:54:45 +0100
commit281605bf141ce9e428577d57ed5204ec06755d8d (patch)
tree9bf691f84d5764f6384964bcf209001d903788d6
parentb7f336383dc8ba58f720adb4c1d218348bf57e54 (diff)
util: fix ANSI sequence for red color
Red turned green by mistake in commit c1072ea0.
-rw-r--r--src/util.h2
1 files changed, 1 insertions, 1 deletions
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"