Index: /trunk/psphot/src/psphotRoughClass.c
===================================================================
--- /trunk/psphot/src/psphotRoughClass.c	(revision 14759)
+++ /trunk/psphot/src/psphotRoughClass.c	(revision 14760)
@@ -9,9 +9,9 @@
 
     if (!havePSF) {
-	// determine the PSF parameters from the source moment values
+        // determine the PSF parameters from the source moment values
         psfClump = pmSourcePSFClump (sources, recipe);
-    } else 
-	// pull FWHM_X,Y from the recipe, use to define psfClump.X,Y
-        bool status_x, status_y;
+    } else {
+        // pull FWHM_X,Y from the recipe, use to define psfClump.X,Y
+        bool status_x, status_y, status_a;
         float FWHM_X = psMetadataLookupF32 (&status_x, recipe, "FWHM_X");
         float FWHM_Y = psMetadataLookupF32 (&status_y, recipe, "FWHM_Y");
@@ -22,16 +22,16 @@
         }
 
-	psEllipseAxes axes;
-	axes.major = FWHM_X / (2.0*sqrt(2.0*log(2.0)));
-	axes.minor = FWHM_Y / (2.0*sqrt(2.0*log(2.0)));
-	axes.theta = ANGLE;
-	psEllipseShape shape = psEllipseAxesToShape (axes);
-	
+        psEllipseAxes axes;
+        axes.major = FWHM_X / (2.0*sqrt(2.0*log(2.0)));
+        axes.minor = FWHM_Y / (2.0*sqrt(2.0*log(2.0)));
+        axes.theta = ANGLE;
+        psEllipseShape shape = psEllipseAxesToShape (axes);
+
         psfClump.X   = shape.sx;
         psfClump.Y   = shape.sy;
         psfClump.dX  = 0.1*shape.sx;
         psfClump.dY  = 0.1*shape.sy;
-	// dX,dY are somewhat crudely defined, but only used to select PSF candidates.
-	// if we already have a PSF, this is not actually used...
+        // dX,dY are somewhat crudely defined, but only used to select PSF candidates.
+        // if we already have a PSF, this is not actually used...
     }
 
