From b5884db437eebe136efef63a8186b7b4b51b5525 Mon Sep 17 00:00:00 2001 From: Nicolas George Date: Wed, 6 Feb 2013 14:22:43 +0100 Subject: [PATCH] lavfi: fix missing space in error message. --- libavfilter/avfiltergraph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }