summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2008-11-17 23:18:44 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2008-11-17 23:18:44 +0000
commitbdb9fd9b7f90d3bc405c357402ea75d54f37239a (patch)
tree1732fda3ce59d122a43b227955000b26ce9a6587 /ffmpeg.c
parent7a7da6b42f267e3207f04710768425e74ad0effa (diff)
Improve messages printed when there is no input/output file, making
them more grammatically correct and consistent with other equivalent messages. Originally committed as revision 15869 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 9308cc4025..d3a4ec26c3 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -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);
}