1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-19 22:50:17 +03:00

pretty-print: make separator line grey

Let's deemphasize the line in the output a bit.
This commit is contained in:
Lennart Poettering 2024-05-24 15:23:24 +02:00
parent cdf6f34a2f
commit ef4bfa5524

View File

@ -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);