From e9792203a86a7f66f0cc70e4aac07ced898f5fa6 Mon Sep 17 00:00:00 2001 From: Konstantin Pereiaslov Date: Mon, 8 Jan 2024 00:32:31 -0600 Subject: [PATCH] Make errors bold --- tty_utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tty_utils.c b/tty_utils.c index 5c97530..278f9f2 100644 --- a/tty_utils.c +++ b/tty_utils.c @@ -17,7 +17,7 @@ void fprintf_error(const char *format, ...) { va_start(args, format); bool is_tty = isatty(fileno(stderr)); - if (is_tty) print_colored_prefix(stderr, "31"); + if (is_tty) print_colored_prefix(stderr, "1;31"); vfprintf(stderr, format, args); if (is_tty) print_colored_suffix(stderr);