Index: trunk/psLib/src/image/psImageFFT.c
===================================================================
--- trunk/psLib/src/image/psImageFFT.c	(revision 1840)
+++ trunk/psLib/src/image/psImageFFT.c	(revision 1864)
@@ -5,6 +5,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-09-21 22:30:19 $
+ *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-09-23 18:31:49 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -24,5 +24,5 @@
 #include "psImageErrors.h"
 
-#define P_FFTW_PLAN_RIGOR FFTW_ESTIMATE
+#define PS_FFTW_PLAN_RIGOR FFTW_ESTIMATE
 
 static bool p_fftwWisdomImported = false;
@@ -90,5 +90,5 @@
     plan = fftwf_plan_dft_2d(numCols, numRows,
                              (fftwf_complex *) out->data.C32[0],
-                             (fftwf_complex *) out->data.C32[0], direction, P_FFTW_PLAN_RIGOR);
+                             (fftwf_complex *) out->data.C32[0], direction, PS_FFTW_PLAN_RIGOR);
 
     /* check if a plan exists now -- if not, it is a real problem */
@@ -422,6 +422,6 @@
 
             for (unsigned int col = 0; col < numCols; col++) {
-                real = crealf(inRow[col]);
-                imag = cimagf(inRow[col]);
+                real = creal(inRow[col]);
+                imag = cimag(inRow[col]);
                 outRow[col] = real * real + imag * imag / numElementsSquared;
             }
