changeset 432:624ddb622a5d

Change that seemed to be needed for emscripten double-precision build to work
author Chris Cannam <c.cannam@qmul.ac.uk>
date Tue, 14 Mar 2017 13:40:50 +0000
parents c49dbfac4349
children ecc92deb4c0b 3994516c1199
files ext/kissfft/kiss_fft.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ext/kissfft/kiss_fft.c	Fri Sep 30 19:04:06 2016 +0100
+++ b/ext/kissfft/kiss_fft.c	Tue Mar 14 13:40:50 2017 +0000
@@ -275,7 +275,8 @@
 
     if (m==1) {
         do{
-            *Fout = *f;
+            Fout->r = f->r;
+            Fout->i = f->i;
             f += fstride*in_stride;
         }while(++Fout != Fout_end );
     }else{