From fa2e952dc9609c199860c35ce7f2ca8f989c73a9 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Wed, 27 May 2020 10:19:45 +0200 Subject: [PATCH] chg, swapped prefix for HINT --- client/src/ui.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/src/ui.c b/client/src/ui.c index 798ed165a..cc256d8e3 100644 --- a/client/src/ui.c +++ b/client/src/ui.c @@ -207,6 +207,8 @@ void PrintAndLogEx(logLevel_t level, const char *fmt, ...) { strncpy(prefix, _BLUE_("[#] "), sizeof(prefix) - 1); break; case HINT: + strncpy(prefix, _YELLOW_("[?] "), sizeof(prefix) - 1); + break; case SUCCESS: strncpy(prefix, _GREEN_("[+] "), sizeof(prefix) - 1); break;