Index: trunk/psLib/src/math/psStats.c
===================================================================
--- trunk/psLib/src/math/psStats.c	(revision 1293)
+++ trunk/psLib/src/math/psStats.c	(revision 1298)
@@ -1804,10 +1804,9 @@
 
     // XXX: Should we abort if (stats->min == stats->max)?
-    if (stats->min >= stats->max) {
+    if ((stats->options & PS_STAT_USE_RANGE) &&
+            (stats->min >= stats->max)) {
         psAbort(__func__, "psVectorStats() called with range: %f to %f\n",
                 stats->min, stats->max);
     }
-
-
 
     PS_CHECK_VECTOR_TYPE(in, PS_TYPE_F32);
