Index: trunk/psLib/test/math/tap_psStats09.c
===================================================================
--- trunk/psLib/test/math/tap_psStats09.c	(revision 10831)
+++ trunk/psLib/test/math/tap_psStats09.c	(revision 10848)
@@ -280,6 +280,6 @@
     if (expectedRC == true) {
         psStats *myStats = psStatsAlloc(PS_STAT_SAMPLE_MEAN | PS_STAT_SAMPLE_STDEV);
-        psStats *rc = psVectorStats(myStats, in, errors, outliers, 1);
-        if (rc == NULL) {
+        bool rc = psVectorStats(myStats, in, errors, outliers, 1);
+        if (rc == false) {
             diag("TEST ERROR: the psVectorStats() function returned NULL.\n");
             testStatus = false;
@@ -298,6 +298,6 @@
     myStats->clipSigma = 5.0;
     myStats->clipIter = 2;
-    psStats *rc = psVectorStats(myStats, in, errors, mask, maskValue);
-    if (rc == NULL) {
+    bool rc = psVectorStats(myStats, in, errors, mask, maskValue);
+    if (rc == false) {
         if (expectedRC == true) {
             diag("TEST ERROR: the psVectorStats() function returned NULL.\n");
