diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-08-24 15:42:50 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-08-24 15:42:50 +0000 |
commit | f9edc2331d8c2d7fe034369c5a3c6b0e1e24362b (patch) | |
tree | 64194694b5e61b34c3d210c2128cebe3e1ea4eb8 | |
parent | e4506f0c98a1207246c8cd67d18181a9668d0411 (diff) | |
download | ffmpeg-f9edc2331d8c2d7fe034369c5a3c6b0e1e24362b.tar.gz |
Fix trivial mixed declarations and code warning caused by a double semicolon.
Originally committed as revision 10212 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ppc/dsputil_altivec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ppc/dsputil_altivec.c b/libavcodec/ppc/dsputil_altivec.c index 34fdab1bcf..835d8af3dd 100644 --- a/libavcodec/ppc/dsputil_altivec.c +++ b/libavcodec/ppc/dsputil_altivec.c @@ -304,7 +304,7 @@ int sad16_altivec(void *v, uint8_t *pix1, uint8_t *pix2, int line_size, int h) int sad8_altivec(void *v, uint8_t *pix1, uint8_t *pix2, int line_size, int h) { int i; - DECLARE_ALIGNED_16(int, s);; + DECLARE_ALIGNED_16(int, s); const_vector unsigned int zero = (const_vector unsigned int)vec_splat_u32(0); vector unsigned char perm1, perm2, permclear, *pix1v, *pix2v; vector unsigned char t1, t2, t3,t4, t5; |