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
This commit is contained in:
Vitor Sessak 2008-05-24 20:39:48 +00:00
parent 03cea46194
commit 89475efd26
1 changed files with 3 additions and 3 deletions

View File

@ -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;