[FFmpeg-cvslog] r15869 - trunk/ffmpeg.c
stefano
subversion
Tue Nov 18 00:18:44 CET 2008
Author: stefano
Date: Tue Nov 18 00:18:44 2008
New Revision: 15869
Log:
Improve messages printed when there is no input/output file, making
them more grammatically correct and consistent with other equivalent
messages.
Modified:
trunk/ffmpeg.c
Modified: trunk/ffmpeg.c
==============================================================================
--- trunk/ffmpeg.c (original)
+++ trunk/ffmpeg.c Tue Nov 18 00:18:44 2008
@@ -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);
}
More information about the ffmpeg-cvslog
mailing list