diff options
author | Clément Bœsch <clement.boesch@smartjog.com> | 2011-06-15 11:24:00 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-06-21 21:41:28 +0200 |
commit | 4a34e54b0ecf342903d5ed112540fa832b62a514 (patch) | |
tree | f57fb9bbc7a0562ff6e748073b7ac13809d86940 /ffplay.c | |
parent | 5f654897e325349dacf2546674e0510bb72ecb50 (diff) | |
download | ffmpeg-4a34e54b0ecf342903d5ed112540fa832b62a514.tar.gz |
Fix zero-length gnu_printf format string warning.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -904,7 +904,7 @@ static void do_exit(void) if (show_status) printf("\n"); SDL_Quit(); - av_log(NULL, AV_LOG_QUIET, ""); + av_log(NULL, AV_LOG_QUIET, "%s", ""); exit(0); } |