Index: trunk/psModules/src/camera/pmFPARead.c
===================================================================
--- trunk/psModules/src/camera/pmFPARead.c	(revision 11793)
+++ trunk/psModules/src/camera/pmFPARead.c	(revision 12564)
@@ -39,5 +39,5 @@
                          const psRegion *trimsec, // Trim section
                          const psList *biassecs, // Bias sections
-			 fpaReadType type
+                         fpaReadType type
                         )
 {
@@ -65,25 +65,25 @@
     switch (type) {
       case FPA_READ_TYPE_IMAGE:
-	if (readout->image) {
-	    psFree (readout->image);
-	}
-	readout->image = psMemIncrRefCounter(psImageSubset(image, region));	
-	break;
+        if (readout->image) {
+            psFree (readout->image);
+        }
+        readout->image = psMemIncrRefCounter(psImageSubset(image, region));
+        break;
       case FPA_READ_TYPE_MASK:
-	if (readout->mask) {
-	    psFree (readout->mask);
-	}
-	readout->mask = psMemIncrRefCounter(psImageSubset(image, region));	
-	break;
+        if (readout->mask) {
+            psFree (readout->mask);
+        }
+        readout->mask = psMemIncrRefCounter(psImageSubset(image, region));
+        break;
       case FPA_READ_TYPE_WEIGHT:
-	if (readout->weight) {
-	    psFree (readout->weight);
-	}
-	readout->weight = psMemIncrRefCounter(psImageSubset(image, region));	
-	break;
+        if (readout->weight) {
+            psFree (readout->weight);
+        }
+        readout->weight = psMemIncrRefCounter(psImageSubset(image, region));
+        break;
       default:
-	psAbort("Unknown read type: %x\n", type);
-    }
-    
+        psAbort("Unknown read type: %x\n", type);
+    }
+
     // Get the list of overscans
     // XXX should this step only be performed for IMAGE, not MASK and WEIGHT types?
@@ -210,5 +210,5 @@
     // check if we have read the desired data, read it if needed
     bool (*hduReadFunc)(pmHDU*, psFits*) = NULL; // Function to use to read the HDU
-    void *dataPointer = NULL; 		// pointer to location of desired data
+    void *dataPointer = NULL;           // pointer to location of desired data
     switch (type) {
       case FPA_READ_TYPE_IMAGE:
@@ -234,9 +234,9 @@
     // do we have the data we want (image, header, or etc).
     if (!dataPointer) {
-	// attempt to read in the desired data
-	if (!hduReadFunc(hdu, fits)) {
-	    psError(PS_ERR_UNKNOWN, false, "Unable to read HDU for cell.\n");
-	    return false;
-	}
+        // attempt to read in the desired data
+        if (!hduReadFunc(hdu, fits)) {
+            psError(PS_ERR_UNKNOWN, false, "Unable to read HDU for cell.\n");
+            return false;
+        }
     }
 
@@ -250,10 +250,10 @@
     // skip the image arrays completely for the header-only files
     if (type == FPA_READ_TYPE_HEADER) {
-	pmCellSetDataStatus(cell, true);
-	return true;
+        pmCellSetDataStatus(cell, true);
+        return true;
     }
 
     // set up pointers for the different possible image arrays
-    psArray *imageArray = NULL;	// Array of images in the HDU
+    psArray *imageArray = NULL; // Array of images in the HDU
     psElemType imageType = PS_TYPE_F32; // Expected type for image
     switch (type) {
@@ -263,5 +263,5 @@
         break;
       case FPA_READ_TYPE_MASK:
-	imageArray = hdu->masks;
+        imageArray = hdu->masks;
         imageType = PS_TYPE_MASK;
         break;
