summaryrefslogtreecommitdiffstats
path: root/src/pulsecore
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2009-08-28 23:30:15 +0200
committerLennart Poettering <lennart@poettering.net>2009-08-28 23:31:05 +0200
commitca2c0f22d8c2cf68f2119ca6f45fe08865451526 (patch)
treeeda917502225fa3898e00a09f282bb8c5bece65e /src/pulsecore
parentf0290413726f98a5a59bb7f1e70cf516f123b8bd (diff)
sconv: quieten gcc a bit
Diffstat (limited to 'src/pulsecore')
-rw-r--r--src/pulsecore/sconv_sse.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/pulsecore/sconv_sse.c b/src/pulsecore/sconv_sse.c
index b213d991..ef78fc26 100644
--- a/src/pulsecore/sconv_sse.c
+++ b/src/pulsecore/sconv_sse.c
@@ -35,8 +35,6 @@
#include "cpu-x86.h"
#include "sconv.h"
-static pa_convert_func_t func;
-
#if defined (__i386__) || defined (__amd64__)
static const PA_DECLARE_ALIGNED (16, float, one[4]) = { 1.0, 1.0, 1.0, 1.0 };
@@ -178,6 +176,7 @@ static void run_test (void) {
float floats[SAMPLES];
int i;
pa_usec_t start, stop;
+ pa_convert_func_t func;
printf ("checking SSE %zd\n", sizeof (samples));
@@ -232,4 +231,3 @@ void pa_convert_func_init_sse (pa_cpu_x86_flag_t flags) {
#endif /* defined (__i386__) || defined (__amd64__) */
}
-