From: Lennart Poettering Date: Fri, 24 May 2024 13:23:24 +0000 (+0200) Subject: pretty-print: make separator line grey X-Git-Tag: v257-rc1~1171^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef4bfa552422fb6cfec331e22367c072c9027ae2;p=thirdparty%2Fsystemd.git pretty-print: make separator line grey Let's deemphasize the line in the output a bit. --- 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);