diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2013-02-06 14:22:43 +0100 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2013-02-07 12:22:09 +0100 |
commit | b5884db437eebe136efef63a8186b7b4b51b5525 (patch) | |
tree | 827414d4239e86f9c7b119379647ff0b50e3a63e /libavfilter/avfiltergraph.c | |
parent | 3dea8b375ed5f2037039d017091562acd9b14386 (diff) | |
download | ffmpeg-b5884db437eebe136efef63a8186b7b4b51b5525.tar.gz |
lavfi: fix missing space in error message.
Diffstat (limited to 'libavfilter/avfiltergraph.c')
-rw-r--r-- | libavfilter/avfiltergraph.c | 2 |
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); } |