# HG changeset patch # User diego # Date 1187970170 0 # Node ID e831a81fb25e73e1c718c4e2bfdac9b6dd049f78 # Parent 5763bfcaa3884950af87b35a307f642590c8b77b Fix trivial mixed declarations and code warning caused by a double semicolon. diff -r 5763bfcaa388 -r e831a81fb25e ppc/dsputil_altivec.c --- a/ppc/dsputil_altivec.c Fri Aug 24 15:38:37 2007 +0000 +++ b/ppc/dsputil_altivec.c Fri Aug 24 15:42:50 2007 +0000 @@ -304,7 +304,7 @@ 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;