diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-04-03 22:54:50 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-04-03 22:59:39 +0200 |
commit | 609ef89703db41563e20e8c07590e2b2a69595cb (patch) | |
tree | 32c6ad8c9f2022f6d37599ed6bf83092d414ecdf /libavutil | |
parent | 49e040e8680365c17f9cfbf94f3a3238afbe718b (diff) | |
download | ffmpeg-609ef89703db41563e20e8c07590e2b2a69595cb.tar.gz |
avutil/log: remove stray ;
regression since 5a18b215f7138c0bd59f27389050b0311fa4a549
Reported-by: J_Darnley
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/log.c b/libavutil/log.c index d40be2bc55..4cceffc5a6 100644 --- a/libavutil/log.c +++ b/libavutil/log.c @@ -130,7 +130,7 @@ static void check_color_terminal(void) use_color = !getenv("NO_COLOR") && !getenv("AV_LOG_FORCE_NOCOLOR") && (getenv("TERM") && isatty(2) || getenv("AV_LOG_FORCE_COLOR")); if ( getenv("AV_LOG_FORCE_256COLOR") - || (term && strstr(term, "256color"))); + || (term && strstr(term, "256color"))) use_color *= 256; #else use_color = getenv("AV_LOG_FORCE_COLOR") && !getenv("NO_COLOR") && |