From ce61b67910f216b7402dc0178decfb3ab0960a32 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Fri, 12 Jun 2020 18:01:06 +0200 Subject: [PATCH] Remove spurious color --- client/src/ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/ui.c b/client/src/ui.c index 05172c789..815d4a9d7 100644 --- a/client/src/ui.c +++ b/client/src/ui.c @@ -328,7 +328,7 @@ static void fPrintAndLog(FILE *stream, const char *fmt, ...) { if (session.supports_colors) { printf(_YELLOW_("[=]") " Session log " _YELLOW_("%s") "\n", my_logfile_path); } else { - printf(_YELLOW_("[=]") " Session log %s\n", my_logfile_path); + printf("[=] Session log %s\n", my_logfile_path); } }