Index: trunk/psLib/src/fft/psVectorFFT.c
===================================================================
--- trunk/psLib/src/fft/psVectorFFT.c	(revision 3264)
+++ trunk/psLib/src/fft/psVectorFFT.c	(revision 3476)
@@ -5,6 +5,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.30 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-02-17 19:26:23 $
+ *  @version $Revision: 1.31 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-03-22 21:52:49 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -87,5 +87,5 @@
         }
         out->type.type = PS_TYPE_F32;
-        out->data.V = psRealloc(out->data.V,PSELEMTYPE_SIZEOF(PS_TYPE_F32)*out->nalloc);
+        out->data.U8 = psRealloc(out->data.U8,PSELEMTYPE_SIZEOF(PS_TYPE_F32)*out->nalloc);
     }
 
@@ -113,5 +113,5 @@
         out = psVectorRecycle(out, numElements, type);
         out->n = numElements;
-        memcpy(out->data.V, in->data.V, numElements * PSELEMTYPE_SIZEOF(type));
+        memcpy(out->data.U8, in->data.U8, numElements * PSELEMTYPE_SIZEOF(type));
         return out;
     }
@@ -172,5 +172,5 @@
         out = psVectorRecycle(out, numElements, type);
         out->n = numElements;
-        memset(out->data.V, 0, PSELEMTYPE_SIZEOF(type) * numElements);
+        memset(out->data.U8, 0, PSELEMTYPE_SIZEOF(type) * numElements);
         return out;
     }
@@ -298,5 +298,5 @@
         out = psVectorRecycle(out, numElements, type);
         out->n = numElements;
-        memcpy(out->data.V, in->data.V, PSELEMTYPE_SIZEOF(type) * numElements);
+        memcpy(out->data.U8, in->data.U8, PSELEMTYPE_SIZEOF(type) * numElements);
         return out;
     }
