Index: trunk/psLib/test/dataManip/tst_psHist02.c
===================================================================
--- trunk/psLib/test/dataManip/tst_psHist02.c	(revision 2721)
+++ trunk/psLib/test/dataManip/tst_psHist02.c	(revision 2780)
@@ -66,5 +66,5 @@
 
         myHist = psHistogramAlloc( LOWER, UPPER, numBins );
-        myHist = psVectorHistogram( myHist, myData, NULL, 0 );
+        myHist = psVectorHistogram( myHist, myData, NULL, NULL, 0 );
 
         for ( i = 0;i < numBins;i++ ) {
@@ -91,5 +91,5 @@
 
         myHist = psHistogramAlloc( LOWER, UPPER, numBins );
-        myHist = psVectorHistogram( myHist, myData, myMask, 1 );
+        myHist = psVectorHistogram( myHist, myData, NULL, myMask, 1 );
 
         for ( i = 0;i < numBins;i++ ) {
@@ -121,5 +121,5 @@
 
     psLogMsg(__func__,PS_LOG_INFO,"Following should generate an error message.");
-    myHist2 = psVectorHistogram( NULL, myData, NULL, 0 );
+    myHist2 = psVectorHistogram( NULL, myData, NULL, NULL, 0 );
     if ( myHist2 != NULL ) {
         printf( "ERROR: myHist2!=NULL\n" );
@@ -136,5 +136,5 @@
     myHist = psHistogramAlloc( LOWER, UPPER, numBins );
     psLogMsg(__func__,PS_LOG_INFO,"Following should generate an error message.");
-    myHist = psVectorHistogram( myHist, NULL, NULL, 0 );
+    myHist = psVectorHistogram( myHist, NULL, NULL, NULL, 0 );
     if ( myHist == NULL ) {
         printf( "ERROR: myHist==NULL\n" );
@@ -155,5 +155,5 @@
     myData->n = myData->nalloc;
     myHist = psHistogramAlloc(LOWER, UPPER, numBins);
-    myHist = psVectorHistogram(myHist, NULL, NULL, 0);
+    myHist = psVectorHistogram(myHist, NULL, NULL, NULL, 0);
     if (myHist == NULL) {
         printf("ERROR: myHist==NULL\n");
