Index: trunk/psModules/src/imcombine/pmImageCombine.c
===================================================================
--- trunk/psModules/src/imcombine/pmImageCombine.c	(revision 9730)
+++ trunk/psModules/src/imcombine/pmImageCombine.c	(revision 10551)
@@ -8,6 +8,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-10-24 22:55:05 $
+ *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-12-08 11:39:30 $
  *
  *  XXX: pmRejectPixels() has a known bug with the pmImageTransform() call.
@@ -189,5 +189,5 @@
                 // Combine all the pixels, using the specified stat.
 
-                stats = psVectorStats(stats, pixelData, pixelErrors, pixelMask, maskVal);
+                psVectorStats(stats, pixelData, pixelErrors, pixelMask, maskVal);
                 psF64 combinedPixel = psStatsGetValue(stats, statistic);
 
@@ -202,5 +202,5 @@
                 psS32 numRejects = 0;
                 for (psS32 im = 0 ; im < numImages ; im++) {
-                    stdevStats = psVectorStats(stdevStats, pixelData, pixelErrors, pixelMask, maskVal);
+                    psVectorStats(stdevStats, pixelData, pixelErrors, pixelMask, maskVal);
                     psF64 stdev = stdevStats->sampleStdev;
 
@@ -285,5 +285,5 @@
                 }
                 // Combine all the pixels, using the specified stat.
-                stats = psVectorStats(stats, pixelData, pixelErrors, pixelMask, maskVal);
+                psVectorStats(stats, pixelData, pixelErrors, pixelMask, maskVal);
                 combine->data.F32[row][col] = psStatsGetValue(stats, statistic);
             }
@@ -356,5 +356,5 @@
     // Get the median
     psStats *stats = psStatsAlloc(PS_STAT_SAMPLE_MEDIAN);
-    (void)psVectorStats(stats, pixels, NULL, mask, 1);
+    psVectorStats(stats, pixels, NULL, mask, 1);
     float median = stats->sampleMedian;
     psFree(stats);
