From f153ee8ac6546d738ac8975cfac6e9bca4752f8b Mon Sep 17 00:00:00 2001 From: David Phillips Date: Thu, 23 Nov 2017 22:14:57 +1300 Subject: Un-bold at the start of each nice line --- sand-leek.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sand-leek.c b/sand-leek.c index 9250a47..8047b8c 100644 --- a/sand-leek.c +++ b/sand-leek.c @@ -42,7 +42,7 @@ static volatile char working; /* "Real" eprintf, error printf. Outputs a message to stderr, prefixed and * coloured all fancy */ #define eprintf(format, ...) \ - iprintf_bare(COLOUR_RED "ERROR: " \ + iprintf_bare(COLOUR_BOLD_OFF COLOUR_RED "ERROR: " \ COLOUR_BWHITE format, ##__VA_ARGS__); /* "Bare" iprintf that does not change colour, apply prefix, etc. @@ -55,7 +55,7 @@ static volatile char working; /* "Real" iprintf, information printf. Outputs a message to stderr, prefixed * and coloured all fancy */ #define iprintf(format, ...) \ - iprintf_bare(COLOUR_CYAN "INFO: " \ + iprintf_bare(COLOUR_BOLD_OFF COLOUR_CYAN "INFO: " \ COLOUR_BWHITE format, ##__VA_ARGS__); void* work(void *arg) { -- cgit v1.1