summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorClément Bœsch <clement.boesch@smartjog.com>2011-06-15 11:24:00 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-06-21 21:41:28 +0200
commit4a34e54b0ecf342903d5ed112540fa832b62a514 (patch)
treef57fb9bbc7a0562ff6e748073b7ac13809d86940 /ffmpeg.c
parent5f654897e325349dacf2546674e0510bb72ecb50 (diff)
Fix zero-length gnu_printf format string warning.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
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 397c715b23..80a67c180e 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -444,7 +444,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);