[FFmpeg-cvslog] avutil/log: remove stray ;

Michael Niedermayer git at videolan.org
Thu Apr 3 23:00:43 CEST 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Apr  3 22:54:50 2014 +0200| [609ef89703db41563e20e8c07590e2b2a69595cb] | committer: Michael Niedermayer

avutil/log: remove stray ;

regression since  5a18b215f7138c0bd59f27389050b0311fa4a549

Reported-by: J_Darnley
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=609ef89703db41563e20e8c07590e2b2a69595cb
---

 libavutil/log.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavutil/log.c b/libavutil/log.c
index d40be2b..4cceffc 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") &&



More information about the ffmpeg-cvslog mailing list