diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2014-09-13 00:26:21 +0200 |
---|---|---|
committer | John Stebbins <stebbins@jetheaddev.com> | 2015-01-18 09:47:32 -0700 |
commit | 891de4b27a07b808839b9e873b6a886248c8fd6b (patch) | |
tree | 675bae1da17210eff689f933a2ad32d3af194c1d | |
parent | 4039f11ed82d84009b5146f0a563f33ced33e4db (diff) | |
download | ffmpeg-891de4b27a07b808839b9e873b6a886248c8fd6b.tar.gz |
log: Unbreak no-tty support on 256color terminals
-rw-r--r-- | libavutil/log.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavutil/log.c b/libavutil/log.c index 5a8f293f20..d38e40bfda 100644 --- a/libavutil/log.c +++ b/libavutil/log.c @@ -75,7 +75,8 @@ static void check_color_terminal(void) char *term = getenv("TERM"); use_color = !getenv("NO_COLOR") && !getenv("AV_LOG_FORCE_NOCOLOR") && (getenv("TERM") && isatty(2) || getenv("AV_LOG_FORCE_COLOR")); - use_color += term && strstr(term, "256color"); + if (use_color) + use_color += term && strstr(term, "256color"); #else use_color = getenv("AV_LOG_FORCE_COLOR") && !getenv("NO_COLOR") && !getenv("AV_LOG_FORCE_NOCOLOR"); |