Index: /trunk/psLib/test/types/tst_psLookupTable_01.c
===================================================================
--- /trunk/psLib/test/types/tst_psLookupTable_01.c	(revision 7545)
+++ /trunk/psLib/test/types/tst_psLookupTable_01.c	(revision 7546)
@@ -12,6 +12,6 @@
 *  @author  Ross Harman, MHPCC
 *
-*  @version $Revision: 1.4 $  $Name: not supported by cvs2svn $
-*  @date  $Date: 2006-02-24 23:43:16 $
+*  @version $Revision: 1.5 $  $Name: not supported by cvs2svn $
+*  @date  $Date: 2006-06-13 23:55:34 $
 *
 *  Copyright 2004-5 Maui High Performance Computing Center, University of Hawaii
@@ -816,5 +816,5 @@
     // Interpolate values with NULL table
     psLogMsg(__func__,PS_LOG_INFO,"Following should generate an error message for NULL table");
-    interpValues = psLookupTableInterpolateAll(table1,5, NULL);
+    interpValues = psLookupTableInterpolateAll(table1,5);
     if(interpValues != NULL ) {
         psError(PS_ERR_UNKNOWN,true,"Did not return NULL for NULL table");
@@ -829,5 +829,5 @@
         return 6;
     }
-    interpValues = psLookupTableInterpolateAll(table1,5.25, NULL);
+    interpValues = psLookupTableInterpolateAll(table1,5.25);
     if(interpValues == NULL) {
         psError(PS_ERR_UNKNOWN,true,"Returned vector is NULL.");
@@ -844,5 +844,5 @@
 
     // Interpolate values with index outside table
-    interpValues = psLookupTableInterpolateAll(table1,0, NULL);
+    interpValues = psLookupTableInterpolateAll(table1,0);
     if(interpValues != NULL) {
         psError(PS_ERR_UNKNOWN,true,"Did return NULL");
