diff x86/fft_sse.c @ 10961:34a65026fa06 libavcodec

Move array specifiers outside DECLARE_ALIGNED() invocations
author mru
date Fri, 22 Jan 2010 03:25:11 +0000
parents 38ab367d4231
children 1bf322283429
line wrap: on
line diff
--- a/x86/fft_sse.c	Fri Jan 22 01:59:17 2010 +0000
+++ b/x86/fft_sse.c	Fri Jan 22 03:25:11 2010 +0000
@@ -23,7 +23,7 @@
 #include "libavcodec/dsputil.h"
 #include "fft.h"
 
-DECLARE_ALIGNED(16, static const int, m1m1m1m1[4]) =
+DECLARE_ALIGNED(16, static const int, m1m1m1m1)[4] =
     { 1 << 31, 1 << 31, 1 << 31, 1 << 31 };
 
 void ff_fft_dispatch_sse(FFTComplex *z, int nbits);