Commit 73807b15 authored by stefano's avatar stefano

Improve messages printed when there is no input/output file, making

them more grammatically correct and consistent with other equivalent
messages.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15869 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b25f69ed
......@@ -3880,12 +3880,12 @@ int main(int argc, char **argv)
/* file converter / grab */
if (nb_output_files <= 0) {
fprintf(stderr, "Must supply at least one output file\n");
fprintf(stderr, "At least one output file must be specified\n");
av_exit(1);
}
if (nb_input_files == 0) {
fprintf(stderr, "Must supply at least one input file\n");
fprintf(stderr, "At least one input file must be specified\n");
av_exit(1);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment