diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 21:41:15 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 21:41:15 +0000 |
commit | d9b575d384f3ccc81745c6f35835f0c3eb3bb4d3 (patch) | |
tree | 17b8d3405f02179bd25f5ead1f1135720823d91c /libavfilter/avfilter.c | |
parent | 7a9fd2a03cf224fd37e0c109d95886f114d1330f (diff) | |
download | ffmpeg-d9b575d384f3ccc81745c6f35835f0c3eb3bb4d3.tar.gz |
Remove useless ()
Commited in SoC by Vitor Sessak on 2008-02-11 17:16:05
Originally committed as revision 12051 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfilter.c')
-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 3a89fc655d..75d716538d 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -67,7 +67,7 @@ void avfilter_insert_pad(unsigned idx, unsigned *count, size_t padidx_off, (*count) ++; for(i = idx+1; i < *count; i ++) if(*links[i]) - (*(unsigned *)((uint8_t *)(*links[i]) + padidx_off)) ++; + (*(unsigned *)((uint8_t *) *links[i] + padidx_off)) ++; } int avfilter_link(AVFilterContext *src, unsigned srcpad, |