From: Stefano Sabatini Date: Mon, 1 Mar 2010 23:02:56 +0000 (+0000) Subject: Clarify the error message issued by ffprobe in case of more than one X-Git-Tag: v0.6~996 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=58621b8d5b19dee7ee17d64342e644f6ac57dc68;p=platform%2Fupstream%2Flibav.git Clarify the error message issued by ffprobe in case of more than one file provided as input. Originally committed as revision 22138 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/ffprobe.c b/ffprobe.c index 4a8ca88..2ab0d96 100644 --- a/ffprobe.c +++ b/ffprobe.c @@ -291,7 +291,8 @@ static void opt_format(const char *arg) static void opt_input_file(const char *arg) { if (input_filename) { - fprintf(stderr, "Input filename already specified: %s\n", arg); + fprintf(stderr, "Argument '%s' provided as input filename, but '%s' was already specified.\n", + arg, input_filename); exit(1); } if (!strcmp(arg, "-"))