Index: trunk/psLib/src/dataManip/psVectorFFT.c
===================================================================
--- trunk/psLib/src/dataManip/psVectorFFT.c	(revision 1385)
+++ trunk/psLib/src/dataManip/psVectorFFT.c	(revision 1404)
@@ -5,6 +5,6 @@
 *  @author Robert DeSonia, MHPCC
 *
-*  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2004-08-04 23:37:39 $
+*  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2004-08-06 21:50:13 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -484,5 +484,5 @@
     numElements = in->n;
 
-    out = psVectorRecycle( out, PS_TYPE_C32, numElements );
+    out = psVectorRecycle( out, numElements, PS_TYPE_C32 );
     out->n = numElements;
 
@@ -542,5 +542,5 @@
         psLogMsg( __func__, PS_LOG_WARN, "Real portion of a non-Complex type called called for. "
                   "Just a vector copy was performed." );
-        out = psVectorRecycle( out, type, numElements );
+        out = psVectorRecycle( out, numElements, type );
         out->n = numElements;
         memcpy( out->data.V, in->data.V, numElements * PSELEMTYPE_SIZEOF( type ) );
@@ -552,5 +552,5 @@
         psC32* inVec = in->data.C32;
 
-        out = psVectorRecycle( out, PS_TYPE_F32, numElements );
+        out = psVectorRecycle( out, numElements, PS_TYPE_F32 );
         out->n = numElements;
         outVec = out->data.F32;
@@ -588,5 +588,5 @@
         psLogMsg( __func__, PS_LOG_WARN, "Imaginary portion of a non-Complex type called for. "
                   "A zeroed vector was returned." );
-        out = psVectorRecycle( out, type, numElements );
+        out = psVectorRecycle( out, numElements, type );
         out->n = numElements;
         memset( out->data.V, 0, PSELEMTYPE_SIZEOF( type ) * numElements );
@@ -598,5 +598,5 @@
         psC32* inVec = in->data.C32;
 
-        out = psVectorRecycle( out, PS_TYPE_F32, numElements );
+        out = psVectorRecycle( out, numElements, PS_TYPE_F32 );
         out->n = numElements;
         outVec = out->data.F32;
@@ -650,5 +650,5 @@
         psF32* imagVec = imag->data.F32;
 
-        out = psVectorRecycle( out, PS_TYPE_C32, numElements );
+        out = psVectorRecycle( out, numElements, PS_TYPE_C32 );
         out->n = numElements;
         outVec = out->data.C32;
@@ -687,5 +687,5 @@
                   "Vector copy was performed instead." );
 
-        out = psVectorRecycle( out, type, numElements );
+        out = psVectorRecycle( out, numElements, type );
         out->n = numElements;
         memcpy( out->data.V, in->data.V, PSELEMTYPE_SIZEOF( type ) * numElements );
@@ -697,5 +697,5 @@
         psC32* inVec = in->data.C32;
 
-        out = psVectorRecycle( out, PS_TYPE_C32, numElements );
+        out = psVectorRecycle( out, numElements, PS_TYPE_C32 );
         out->n = numElements;
         outVec = out->data.C32;
@@ -746,5 +746,5 @@
         psF32 inAbs2;
 
-        out = psVectorRecycle( out, PS_TYPE_F32, outNumElements );
+        out = psVectorRecycle( out, outNumElements, PS_TYPE_F32 );
         out->n = outNumElements;
         outVec = out->data.F32;
