Index: trunk/psModules/src/pmSubtractBias.c
===================================================================
--- trunk/psModules/src/pmSubtractBias.c	(revision 3583)
+++ trunk/psModules/src/pmSubtractBias.c	(revision 4030)
@@ -6,6 +6,6 @@
  *  @author George Gusciora, MHPCC
  *
- *  @version $Revision: 1.32 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-03-31 02:02:59 $
+ *  @version $Revision: 1.33 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-05-25 20:28:32 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -184,5 +184,5 @@
         // Fit a polynomial to the old overscan vector.
         myPoly = (psPolynomial1D *) fitSpec;
-        PS_POLY_CHECK_NULL(myPoly, NULL);
+        PS_ASSERT_POLY_NON_NULL(myPoly, NULL);
         myPoly = psVectorFitPolynomial1D(myPoly, NULL, overscanVector, NULL);
         if (myPoly == NULL) {
@@ -254,7 +254,7 @@
     psTrace(".psModule.pmSubtracBias.pmSubtractBias", 4,
             "---- pmSubtractBias() begin ----\n");
-    PS_READOUT_CHECK_NULL(in, NULL);
-    PS_READOUT_CHECK_EMPTY(in, NULL);
-    PS_READOUT_CHECK_TYPE(in, PS_TYPE_F32, NULL);
+    PS_ASSERT_READOUT_NON_NULL(in, NULL);
+    PS_ASSERT_READOUT_NON_EMPTY(in, NULL);
+    PS_ASSERT_READOUT_TYPE(in, PS_TYPE_F32, NULL);
 
     //
@@ -265,5 +265,5 @@
         while (NULL != tmpOverscan) {
             psImage *myOverscanImage = (psImage *) tmpOverscan->data;
-            PS_IMAGE_CHECK_TYPE(myOverscanImage, PS_TYPE_F32, NULL);
+            PS_ASSERT_IMAGE_TYPE(myOverscanImage, PS_TYPE_F32, NULL);
             tmpOverscan = tmpOverscan->next;
         }
@@ -351,5 +351,5 @@
             myOverscanImage = (psImage *) tmpOverscan->data;
 
-            PS_IMAGE_CHECK_TYPE(myOverscanImage, PS_TYPE_F32, NULL);
+            PS_ASSERT_IMAGE_TYPE(myOverscanImage, PS_TYPE_F32, NULL);
             psStats *rc = psImageStats(myStats, myOverscanImage, NULL, 0xffffffff);
             if (rc == NULL) {
