Commit b89f74a0 authored by stefano's avatar stefano

Clarify the error message issued by ffprobe in case of more than one file provided as input.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22138 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 49534605
......@@ -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, "-"))
......
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