diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-09-11 23:19:57 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-09-11 23:19:57 +0000 |
commit | a1689e2f19957c45b6f2b2fc0063b304826a8887 (patch) | |
tree | 2c8f041d185284db79a34f509a3c98c4f400b16e /ffmpeg.c | |
parent | b4abfb306084e204a1c79f468dbb3b0880914342 (diff) | |
download | ffmpeg-a1689e2f19957c45b6f2b2fc0063b304826a8887.tar.gz |
avoid stdio.h
Originally committed as revision 4585 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4495,7 +4495,7 @@ static void show_help(void) show_help_options(options, "\nAdvanced options:\n", OPT_EXPERT | OPT_AUDIO | OPT_VIDEO | OPT_GRAB, OPT_EXPERT); - av_opt_show(avctx_opts, stdout); + av_opt_show(avctx_opts, NULL); exit(1); } |