Index: trunk/psLib/src/image/psImageFFT.c
===================================================================
--- trunk/psLib/src/image/psImageFFT.c	(revision 3264)
+++ trunk/psLib/src/image/psImageFFT.c	(revision 3301)
@@ -5,6 +5,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-02-17 19:26:24 $
+ *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-02-22 19:38:44 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -375,5 +375,4 @@
     psU32 numCols;
     psU32 numRows;
-    psS32 numElementsSquared;
 
     if (in == NULL) {
@@ -385,5 +384,4 @@
     numCols = in->numCols;
     numRows = in->numRows;
-    numElementsSquared = numCols * numCols * numRows * numRows;
 
     if (type == PS_TYPE_C32) {
@@ -392,4 +390,5 @@
         psF32 real;
         psF32 imag;
+        psF32 numElementsSquared = numCols * numCols * numRows * numRows;
 
         out = psImageRecycle(out, numCols, numRows, PS_TYPE_F32);
@@ -409,4 +408,5 @@
         psF64 real;
         psF64 imag;
+        psF64 numElementsSquared = numCols * numCols * numRows * numRows;
 
         out = psImageRecycle(out, numCols, numRows, PS_TYPE_F64);
