diff options
author | David Phillips <david@sighup.nz> | 2017-11-23 22:15:11 +1300 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2017-11-23 22:15:11 +1300 |
commit | 2cc28c7a25a91c9f7f31e73a8fd0780a0c865666 (patch) | |
tree | 6b79107eaf9050a6d09ee61adcc8d25e49190e19 | |
parent | f024ffbe838e6813e8248028ed5a7c5d5d522d81 (diff) | |
parent | f153ee8ac6546d738ac8975cfac6e9bca4752f8b (diff) | |
download | sand-leek-2cc28c7a25a91c9f7f31e73a8fd0780a0c865666.tar.xz |
Merge branch 'master' into fancy-monitor
-rw-r--r-- | sand-leek.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sand-leek.c b/sand-leek.c index a7ec430..5f37974 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) { |