From 94e0d435029a8d9234d6640a50277a9dae975710 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Tue, 18 Dec 2018 18:43:49 +0100 Subject: [PATCH] CHG: coloring of ERR --- client/ui.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/ui.c b/client/ui.c index 070f75b7a..3f7e2611f 100644 --- a/client/ui.c +++ b/client/ui.c @@ -58,6 +58,9 @@ void PrintAndLogEx(logLevel_t level, char *fmt, ...) { static char *prefixes[7] = { "", "[+] ", "[=] ", "[-] ", "[!] ", "[!!] ", "[#] "}; switch( level ) { + case ERR: + strncpy(prefix,_RED_([!!] ), sizeof(prefix)-1); + break; case FAILED: strncpy(prefix,_RED_([-] ), sizeof(prefix)-1); break;