Index: /trunk/psModules/src/pmFlatField.c
===================================================================
--- /trunk/psModules/src/pmFlatField.c	(revision 1802)
+++ /trunk/psModules/src/pmFlatField.c	(revision 1803)
@@ -15,6 +15,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-09-14 02:29:27 $
+ *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-09-14 18:04:31 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -95,5 +95,5 @@
 
     // Macro for all PS types
-    #define PM_FLAT_DIVISION(TYPE)                                                                           \
+    #define PM_FLAT_DIVISION(TYPE)                                                                   \
 case PS_TYPE_##TYPE:                                                                                 \
     for(j = inImage->row0; j < inImage->numRows; j++) {                                              \
@@ -107,15 +107,15 @@
             }                                                                                        \
             if(creal(flatImage->data.TYPE[j][i]) < 0.0) {                                            \
-                /* Negative pixels in the flat may be set to zero */                                 \
-                inImage->data.TYPE[j][i] = 0;                                                        \
-            } else if(fabs(flatImage->data.TYPE[j][i]) < FLT_EPSILON) {                              \
-                psError(__func__, " : Line %d - Divide by zero. Row: %d Col: %d",__LINE__, j, i);    \
-            } else {                                                                                 \
-                /* Module shall divide the input image by the flat-fielded image */                  \
-                inImage->data.TYPE[j][i] = inImage->data.TYPE[j][i]/flatImage->data.TYPE[j][i];      \
-            }                                                                                        \
-        }                                                                                            \
-    }                                                                                                \
-    break;
+                /* Negative pixels from the flat image may be set to zero */                         \
+                inImage->data.TYPE[j][i] = 0.0                                                       \
+                                       } else if(fabs(flatImage->data.TYPE[j][i]) < FLT_EPSILON) {                              \
+                                           psError(__func__, " : Line %d - Divide by zero. Row: %d Col: %d",__LINE__, j, i);    \
+                                       } else {                                                                                 \
+                                           /* Module shall divide the input image by the flat-fielded image */                  \
+                                           inImage->data.TYPE[j][i] = inImage->data.TYPE[j][i]/flatImage->data.TYPE[j][i];      \
+                                       }                                                                                        \
+                                   }                                                                                            \
+                               }                                                                                                \
+                               break;
 
     switch(inType) {
