fix crash when copy'ing latent plugins
[ardour.git] / libs / ardour / sse_functions_xmm.cc
index f8a53cc6f8be6694a4d97197795926be021d3c7d..6eac488a253a3af89df5f7044a1e60d07ed126b2 100644 (file)
@@ -45,7 +45,7 @@ x86_sse_find_peaks(const ARDOUR::Sample* buf, ARDOUR::pframes_t nframes, float *
 
         // use 64 byte prefetch for quadruple quads
         while (nframes >= 16) {
-#ifdef COMPILER_MSVC                                    
+#ifdef COMPILER_MSVC
                                _mm_prefetch(((char*)buf+64), 0);  // A total guess! Assumed to be eqivalent to
 #else                                              // the line below but waiting to be tested !!
                 __builtin_prefetch(buf+64,0,0);