Index: trunk/psLib/src/fft/psImageFFT.h
===================================================================
--- trunk/psLib/src/fft/psImageFFT.h	(revision 11703)
+++ trunk/psLib/src/fft/psImageFFT.h	(revision 11704)
@@ -5,6 +5,6 @@
 /// @author Robert DeSonia, MHPCC
 ///
-/// @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
-/// @date $Date: 2007-02-08 04:17:58 $
+/// @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
+/// @date $Date: 2007-02-08 04:23:57 $
 /// Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
 ///
@@ -54,5 +54,5 @@
 /// of the output image are returned.  Only implemented for F32 input.
 bool psImageComplexMultiply(psImage **outReal, ///< Real part of output
-                            psimage **outImag, ///< Imaginary part of output
+                            psImage **outImag, ///< Imaginary part of output
                             const psImage *in1Real, ///< Real part of input 1
                             const psImage *in1Imag, ///< Imaginary part of input 1
Index: trunk/psLib/src/fft/psVectorFFT.c
===================================================================
--- trunk/psLib/src/fft/psVectorFFT.c	(revision 11703)
+++ trunk/psLib/src/fft/psVectorFFT.c	(revision 11704)
@@ -6,6 +6,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.37 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2007-02-08 04:17:58 $
+ *  @version $Revision: 1.38 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-02-08 04:23:57 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -73,5 +73,5 @@
 }
 
-bool psVectorBackwardFFT(psVector **out, const psVector *real, const psVector *imag)
+bool psVectorBackwardFFT(psVector **out, const psVector *real, const psVector *imag, long origNum)
 {
     PS_ASSERT_VECTOR_NON_NULL(real, false);
Index: trunk/psLib/src/fft/psVectorFFT.h
===================================================================
--- trunk/psLib/src/fft/psVectorFFT.h	(revision 11703)
+++ trunk/psLib/src/fft/psVectorFFT.h	(revision 11704)
@@ -5,6 +5,6 @@
 /// @author Robert DeSonia, MHPCC
 ///
-/// @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
-/// @date $Date: 2007-02-08 04:17:58 $
+/// @version $Revision: 1.21 $ $Name: not supported by cvs2svn $
+/// @date $Date: 2007-02-08 04:23:57 $
 /// Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
 ///
@@ -40,5 +40,5 @@
                          const psVector *real, ///< Real input (F32)
                          const psVector *imag, ///< Imaginary input (F32)
-                         int origN      ///< Original number of elements
+                         long origNum    ///< Original number of elements
     );
 
Index: trunk/psLib/src/imageops/psImageConvolve.c
===================================================================
--- trunk/psLib/src/imageops/psImageConvolve.c	(revision 11703)
+++ trunk/psLib/src/imageops/psImageConvolve.c	(revision 11704)
@@ -7,6 +7,6 @@
 /// @author Eugene Magnier, IfA
 ///
-/// @version $Revision: 1.43 $ $Name: not supported by cvs2svn $
-/// @date $Date: 2007-02-08 04:17:58 $
+/// @version $Revision: 1.44 $ $Name: not supported by cvs2svn $
+/// @date $Date: 2007-02-08 04:23:57 $
 ///
 /// Copyright 2004-2007 Institute for Astronomy, University of Hawaii
@@ -231,5 +231,5 @@
         SPATIAL_CONVOLVE_CASE(F64);
       default:
-        psAbort(PS_FILE_LINE, "Should never get here: bad type that was asserted on previously.");
+        psAbort("Should never get here: bad type that was asserted on previously.");
     }
 
