diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 21:41:19 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 21:41:19 +0000 |
commit | b3431ecde28c9bf139224ed6f16a38c937c3772b (patch) | |
tree | b91da0facffc7475f740d67c09ff800ab49cd424 /libavfilter | |
parent | d9b575d384f3ccc81745c6f35835f0c3eb3bb4d3 (diff) | |
download | ffmpeg-b3431ecde28c9bf139224ed6f16a38c937c3772b.tar.gz |
Nit: Alignment
Commited in SoC by Vitor Sessak on 2008-02-11 17:16:35
Originally committed as revision 12052 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/avfilter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 75d716538d..e7139c7fa5 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -80,7 +80,7 @@ int avfilter_link(AVFilterContext *src, unsigned srcpad, return -1; src->outputs[srcpad] = - dst->inputs[dstpad] = link = av_mallocz(sizeof(AVFilterLink)); + dst-> inputs[dstpad] = link = av_mallocz(sizeof(AVFilterLink)); link->src = src; link->dst = dst; |