summaryrefslogtreecommitdiffstats
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <[email protected]>2011-06-21 21:55:46 +0200
committerMichael Niedermayer <[email protected]>2011-06-21 21:55:55 +0200
commit1986380df2caaa663f63d0a3b9f0413a3d862757 (patch)
treecc9f90b9625c734bfa50bdc4c2603ef6bdc190e4 /ffmpeg.c
parentdf3850db4958c44e8e4d5aa0fece71c03a51372b (diff)
parent86824c1dcb3eaffc2b143de452e8082dc3c59822 (diff)
Merge branch 'master' into oldabi
* master: ffplay: do not init SDL audio if -an is specified. Fix zero-length gnu_printf format string warning. A cmp instruction with two constants is invalid, thus "g" constraint is not correct but must be "rm" instead. Merged-by: Michael Niedermayer <[email protected]>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 2fab0b56f4..7c4cc3a527 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -446,7 +446,7 @@ static int configure_video_filters(AVInputStream *ist, AVOutputStream *ost)
static void term_exit(void)
{
- av_log(NULL, AV_LOG_QUIET, "");
+ av_log(NULL, AV_LOG_QUIET, "%s", "");
#if HAVE_TERMIOS_H
if(!run_as_daemon)
tcsetattr (0, TCSANOW, &oldtty);