Index: trunk/psLib/test/dataManip/tst_psHist02.c
===================================================================
--- trunk/psLib/test/dataManip/tst_psHist02.c	(revision 1320)
+++ trunk/psLib/test/dataManip/tst_psHist02.c	(revision 1327)
@@ -66,5 +66,5 @@
 
         myHist = psHistogramAlloc(LOWER, UPPER, numBins);
-        myHist = psHistogramVector(myHist, myData, NULL, 0);
+        myHist = psVectorHistogram(myHist, myData, NULL, 0);
 
         for (i=0;i<numBins;i++) {
@@ -72,5 +72,5 @@
                    myHist->bounds->data.F32[i],
                    myHist->bounds->data.F32[i+1],
-                   myHist->nums->data.S32[i]);
+                   myHist->nums->data.U32[i]);
         }
         psMemCheckCorruption(1);
@@ -91,5 +91,5 @@
 
         myHist = psHistogramAlloc(LOWER, UPPER, numBins);
-        myHist = psHistogramVector(myHist, myData, myMask, 1);
+        myHist = psVectorHistogram(myHist, myData, myMask, 1);
 
         for (i=0;i<numBins;i++) {
@@ -97,5 +97,5 @@
                    myHist->bounds->data.F32[i],
                    myHist->bounds->data.F32[i+1],
-                   myHist->nums->data.S32[i]);
+                   myHist->nums->data.U32[i]);
         }
         psMemCheckCorruption(1);
@@ -112,10 +112,10 @@
     printPositiveTestHeader(stdout,
                             "psStats functions",
-                            "Calling psHistogramVector() with various NULL inputs.");
+                            "Calling psVectorHistogram() with various NULL inputs.");
 
     // Verify the return value is null and program execution doesn't stop,
     // if input parameter myHist is null.
 
-    myHist2 = psHistogramVector(NULL, myData, NULL, 0);
+    myHist2 = psVectorHistogram(NULL, myData, NULL, 0);
     if (myHist2 != NULL) {
         printf("ERROR: myHist2!=NULL\n");
@@ -130,5 +130,5 @@
 
     myHist = psHistogramAlloc(LOWER, UPPER, numBins);
-    myHist = psHistogramVector(myHist, NULL, NULL, 0);
+    myHist = psVectorHistogram(myHist, NULL, NULL, 0);
     if (myHist == NULL) {
         printf("ERROR: myHist==NULL\n");
@@ -147,5 +147,5 @@
     myData->n = myData->nalloc;
     myHist = psHistogramAlloc(LOWER, UPPER, numBins);
-    myHist = psHistogramVector(myHist, NULL, NULL, 0);
+    myHist = psVectorHistogram(myHist, NULL, NULL, 0);
     if (myHist == NULL) {
         printf("ERROR: myHist==NULL\n");
@@ -157,5 +157,5 @@
     printFooter(stdout,
                 "psStats functions",
-                "Calling psHistogramVector() with various NULL inputs.",
+                "Calling psVectorHistogram() with various NULL inputs.",
                 testStatus);
 
