diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-11-17 23:15:29 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-11-17 23:15:29 +0000 |
commit | 7a7da6b42f267e3207f04710768425e74ad0effa (patch) | |
tree | c963af86d8df8db4e0249848bc5655c543db09f1 /ffplay.c | |
parent | 40b509b36bf98a9fa382675f47d96a4e89c1597b (diff) | |
download | ffmpeg-7a7da6b42f267e3207f04710768425e74ad0effa.tar.gz |
Remove unnecessary calls to show_help(), make ffmpeg/ffplay print a
specific error message instead.
Originally committed as revision 15868 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2553,7 +2553,7 @@ int main(int argc, char **argv) parse_options(argc, argv, options, opt_input_file); if (!input_filename) { - show_help(); + fprintf(stderr, "An input file must be specified\n"); exit(1); } |