[SCM] libav/experimental: Improve messages printed when there is no input/output file, making them more grammatically correct and consistent with other equivalent messages.
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 16:32:24 UTC 2013
The following commit has been merged in the experimental branch:
commit bdb9fd9b7f90d3bc405c357402ea75d54f37239a
Author: Stefano Sabatini <stefano.sabatini-lala at poste.it>
Date: Mon Nov 17 23:18:44 2008 +0000
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
diff --git a/ffmpeg.c b/ffmpeg.c
index 9308cc4..d3a4ec2 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);
}
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list