summaryrefslogtreecommitdiff
path: root/libavfilter/avfiltergraph.c
diff options
context:
space:
mode:
authorNicolas George <nicolas.george@normalesup.org>2013-02-06 14:22:43 +0100
committerNicolas George <nicolas.george@normalesup.org>2013-02-07 12:22:09 +0100
commitb5884db437eebe136efef63a8186b7b4b51b5525 (patch)
tree827414d4239e86f9c7b119379647ff0b50e3a63e /libavfilter/avfiltergraph.c
parent3dea8b375ed5f2037039d017091562acd9b14386 (diff)
lavfi: fix missing space in error message.
Diffstat (limited to 'libavfilter/avfiltergraph.c')
-rw-r--r--libavfilter/avfiltergraph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c
index 6b4d3c50f4..0bc8464e1d 100644
--- a/libavfilter/avfiltergraph.c
+++ b/libavfilter/avfiltergraph.c
@@ -402,7 +402,7 @@ static int pick_format(AVFilterLink *link, AVFilterLink *ref)
if (link->in_channel_layouts->all_layouts) {
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);
return AVERROR(EINVAL);
}