Index: trunk/psLib/test/math/tap_psStats07.c
===================================================================
--- trunk/psLib/test/math/tap_psStats07.c	(revision 10831)
+++ trunk/psLib/test/math/tap_psStats07.c	(revision 10848)
@@ -314,6 +314,6 @@
     if (expectedRC == true) {
         psStats *myStats = psStatsAlloc(PS_STAT_SAMPLE_MEAN | PS_STAT_SAMPLE_STDEV | PS_STAT_SAMPLE_MEDIAN | PS_STAT_SAMPLE_QUARTILE);
-        psStats *rc = psVectorStats(myStats, in, NULL, NULL, maskValue);
-        if (rc == NULL) {
+        bool rc = psVectorStats(myStats, in, NULL, NULL, maskValue);
+        if (rc == false) {
             diag("TEST ERROR: the psVectorStats() function returned NULL.\n");
             testStatus = false;
@@ -406,7 +406,7 @@
                            PS_STAT_FITTED_MEAN |
                            PS_STAT_FITTED_STDEV);
-    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");
