Index: trunk/psModules/src/detrend/pmBias.c
===================================================================
--- trunk/psModules/src/detrend/pmBias.c	(revision 10299)
+++ trunk/psModules/src/detrend/pmBias.c	(revision 10302)
@@ -8,5 +8,5 @@
 
 #include "pmFPA.h"
-#include "pmSubtractBias.h"
+#include "pmBias.h"
 
 
@@ -37,7 +37,7 @@
 
 
-// psSubtractFrame(): this routine will take as input a readout for the input image and a readout for the bias
+// subtractFrame(): this routine will take as input a readout for the input image and a readout for the bias
 // image.  The bias image is subtracted in place from the input image.
-static bool SubtractFrame(pmReadout *in, // Input readout
+static bool subtractFrame(pmReadout *in, // Input readout
                           const pmReadout *sub, // Readout to be subtracted from input
                           float scale   // Scale to apply before subtracting
@@ -195,9 +195,9 @@
 
 
-bool pmSubtractBias(pmReadout *in, pmOverscanOptions *overscanOpts,
+bool pmBiasSubtract(pmReadout *in, pmOverscanOptions *overscanOpts,
                     const pmReadout *bias, const pmReadout *dark)
 {
     psTrace("psModules.detrend", 4,
-            "---- pmSubtractBias() begin ----\n");
+            "---- pmBiasSubtract() begin ----\n");
     PS_ASSERT_PTR_NON_NULL(in, NULL);
     PS_ASSERT_IMAGE_NON_NULL(in->image, NULL);
@@ -357,5 +357,5 @@
     // Bias frame subtraction
     if (bias) {
-        if (!SubtractFrame(in, bias, 1.0))
+        if (!subtractFrame(in, bias, 1.0))
             return false;
     }
@@ -365,5 +365,5 @@
         float inTime = psMetadataLookupF32(NULL, in->parent->concepts, "CELL.DARKTIME");
         float darkTime = psMetadataLookupF32(NULL, dark->parent->concepts, "CELL.DARKTIME");
-        if (!SubtractFrame(in, dark, inTime/darkTime))
+        if (!subtractFrame(in, dark, inTime/darkTime))
             return false;
     }
