Browse Source

lavfi: fix missing space in error message.

tags/n1.2
Nicolas George 12 years ago
parent
commit
b5884db437
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/avfiltergraph.c

+ 1
- 1
libavfilter/avfiltergraph.c View File

@@ -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);
} }


Loading…
Cancel
Save