This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/cgit.cgi/v4l-utils.git tree:
Subject: dvbv5-scan: color was set to white instead of resetting Author: Hans Verkuil <hverk...@xs4all.nl> Date: Sun Apr 27 12:46:44 2025 +0200 After logging text in color, the color was set to white instead of using the reset sequence. This messed up the output on a black-on-white console. Signed-off-by: Hans Verkuil <hverk...@xs4all.nl> utils/dvb/dvbv5-scan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=259d44ef2d5665294b7dcb611621b5cd55b96092 diff --git a/utils/dvb/dvbv5-scan.c b/utils/dvb/dvbv5-scan.c index 9f47ead767fe..c84c90fdb113 100644 --- a/utils/dvb/dvbv5-scan.c +++ b/utils/dvb/dvbv5-scan.c @@ -205,7 +205,7 @@ static int check_frontend(void *__args, }; if (isatty(STDERR_FILENO)) { - fprintf(stderr, "\x1b[37m"); + fprintf(stderr, "\x1b[0m"); } return (status & FE_HAS_LOCK) ? 0 : -1;