diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-05-24 20:39:48 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-05-24 20:39:48 +0000 |
commit | 89475efd26ebc38259062732e141f80bb4e5704c (patch) | |
tree | 850a550e758f6c999ff595ad7a2b3933114e9807 | |
parent | 03cea461944cf1db0f8efb6fb4c28ec0e280885e (diff) | |
download | ffmpeg-89475efd26ebc38259062732e141f80bb4e5704c.tar.gz |
Cosmetics: alignment
Commited in SoC by Vitor Sessak on 2008-04-10 21:10:06
Originally committed as revision 13306 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavfilter/graphparser.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index 5b3a5464c2..1ec96b75b3 100644 --- a/libavfilter/graphparser.c +++ b/libavfilter/graphparser.c @@ -225,10 +225,10 @@ static int parse_inouts(const char **buf, AVFilterInOut **inout, int pad, return -1; } - inoutn->type = type; - inoutn->filter = filter; + inoutn->type = type; + inoutn->filter = filter; inoutn->pad_idx = pad++; - inoutn->next = *inout; + inoutn->next = *inout; *inout = inoutn; } return pad; |