Index: trunk/psphot/src/psphotReadout.c
===================================================================
--- trunk/psphot/src/psphotReadout.c	(revision 10856)
+++ trunk/psphot/src/psphotReadout.c	(revision 10975)
@@ -31,6 +31,5 @@
 
     if (!strcasecmp (breakPt, "NOTHING")) {
-	if (!psphotReadoutCleanup (config, readout, recipe, NULL, NULL)) return false;
-	return true;
+        return psphotReadoutCleanup(config, readout, recipe, NULL, NULL);
     }
 
@@ -39,6 +38,5 @@
 
     if (!strcasecmp (breakPt, "BACKMDL")) {
-	if (!psphotReadoutCleanup (config, readout, recipe, NULL, NULL)) return false;
-	return true;
+        return psphotReadoutCleanup (config, readout, recipe, NULL, NULL);
     }
 
@@ -54,6 +52,5 @@
 
     if (!strcasecmp (breakPt, "PEAKS")) {
-        if (!psphotReadoutCleanup (config, readout, recipe, NULL, sources)) return false;
-        return true;
+        return psphotReadoutCleanup(config, readout, recipe, NULL, sources);
     }
 
@@ -74,6 +71,5 @@
 
     if (!strcasecmp (breakPt, "MOMENTS")) {
-        if (!psphotReadoutCleanup (config, readout, recipe, NULL, sources)) return false;
-        return true;
+        return psphotReadoutCleanup(config, readout, recipe, NULL, sources);
     }
 
@@ -89,6 +85,5 @@
 
     if (!strcasecmp (breakPt, "PSFMODEL")) {
-        if (!psphotReadoutCleanup (config, readout, recipe, psf, sources)) return false;
-        return true;
+        return psphotReadoutCleanup(config, readout, recipe, psf, sources);
     }
 
@@ -106,6 +101,6 @@
     // next steps:
     // remeasure the sky after objects have been subrtracted
-    // re-find the peaks.  
-    // re-run ensemble fit 
+    // re-find the peaks.
+    // re-run ensemble fit
 
     // XXX this was an attempt to measure bias due to the weighting.
@@ -149,6 +144,5 @@
 
     // create the exported-metadata and free local data
-    if (!psphotReadoutCleanup (config, readout, recipe, psf, sources)) return false;
-    return true;
+    return psphotReadoutCleanup(config, readout, recipe, psf, sources);
 }
 
