summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2005-09-11 23:19:57 +0000
committerMichael Niedermayer <michaelni@gmx.at>2005-09-11 23:19:57 +0000
commita1689e2f19957c45b6f2b2fc0063b304826a8887 (patch)
tree2c8f041d185284db79a34f509a3c98c4f400b16e /ffmpeg.c
parentb4abfb306084e204a1c79f468dbb3b0880914342 (diff)
avoid stdio.h
Originally committed as revision 4585 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 6ffb4232c7..a66908f2a2 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -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);
}