From 7b376b29a3e1d0b9613474de2f2aa32705031b12 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Mon, 18 Jan 2021 06:36:02 +0900 Subject: [PATCH] log: use ansi_normal() instead of ANSI_NORMAL --- src/basic/log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/basic/log.c b/src/basic/log.c index 53f8df634f2..665dbf40a52 100644 --- a/src/basic/log.c +++ b/src/basic/log.c @@ -405,7 +405,7 @@ static int write_to_console( const char *lon = "", *loff = ""; if (log_get_show_color()) { lon = ansi_highlight_yellow4(); - loff = ANSI_NORMAL; + loff = ansi_normal(); } (void) snprintf(location, sizeof location, "%s%s:%i%s: ", lon, file, line, loff); -- 2.47.3