Commit b5884db4 authored by Nicolas George's avatar Nicolas George

lavfi: fix missing space in error message.

parent 3dea8b37
...@@ -402,7 +402,7 @@ static int pick_format(AVFilterLink *link, AVFilterLink *ref) ...@@ -402,7 +402,7 @@ static int pick_format(AVFilterLink *link, AVFilterLink *ref)
if (link->in_channel_layouts->all_layouts) { if (link->in_channel_layouts->all_layouts) {
av_log(link->src, AV_LOG_ERROR, "Cannot select channel layout for" av_log(link->src, AV_LOG_ERROR, "Cannot select channel layout for"
"the link between filters %s and %s.\n", link->src->name, " the link between filters %s and %s.\n", link->src->name,
link->dst->name); link->dst->name);
return AVERROR(EINVAL); return AVERROR(EINVAL);
} }
......
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