From ef4bfa552422fb6cfec331e22367c072c9027ae2 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 24 May 2024 15:23:24 +0200 Subject: [PATCH] pretty-print: make separator line grey Let's deemphasize the line in the output a bit. --- src/shared/pretty-print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/pretty-print.c b/src/shared/pretty-print.c index c75f74a6c6e..2c46f3e2dcf 100644 --- a/src/shared/pretty-print.c +++ b/src/shared/pretty-print.c @@ -289,7 +289,7 @@ void print_separator(void) { size_t c = columns(); flockfile(stdout); - fputs_unlocked(ANSI_UNDERLINE, stdout); + fputs_unlocked(ANSI_GREY_UNDERLINE, stdout); for (size_t i = 0; i < c; i++) fputc_unlocked(' ', stdout); -- 2.47.3