Index: /trunk/psLib/test/dataManip/Makefile
===================================================================
--- /trunk/psLib/test/dataManip/Makefile	(revision 1908)
+++ /trunk/psLib/test/dataManip/Makefile	(revision 1909)
@@ -3,6 +3,6 @@
 ##  Makefile:   test/sysUtils
 ##
-##  $Revision: 1.46 $  $Name: not supported by cvs2svn $
-##  $Date: 2004-09-27 23:41:42 $
+##  $Revision: 1.47 $  $Name: not supported by cvs2svn $
+##  $Date: 2004-09-28 00:30:32 $
 ##
 ##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -25,5 +25,4 @@
 tst_psFunc04 \
 tst_psFunc05 \
-tst_psFunc06 \
 tst_psFunc07 \
 tst_psHist00 \
@@ -42,5 +41,4 @@
 tst_psMatrixVectorArithmetic03 \
 tst_psMinimize04 \
-tst_psMinimize04b \
 tst_psMinimize05 \
 tst_psMinimize06 \
@@ -55,4 +53,6 @@
 tst_psStats09 \
 tst_psVectorFFT 
+# tst_psFunc06 \
+# tst_psMinimize04b \
 
 OBJS = $(addsuffix .o,$(TARGET))
Index: /trunk/psLib/test/image/tst_psImageManip.c
===================================================================
--- /trunk/psLib/test/image/tst_psImageManip.c	(revision 1908)
+++ /trunk/psLib/test/image/tst_psImageManip.c	(revision 1909)
@@ -6,6 +6,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-09-25 01:38:24 $
+ *  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-09-28 00:30:32 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -1391,7 +1391,7 @@
         for (int col=0;col<cols;col++) {
             psF32 fValue = psImagePixelInterpolate(fImg,col+colShift,
-                                                   row+rowShift,NAN,PS_INTERPOLATE_FLAT);
+                                                   row+rowShift,NULL,0,NAN,PS_INTERPOLATE_FLAT);
             psS16 sValue = (psS16)psImagePixelInterpolate(sImg,col+colShift,
-                           row+rowShift,-1,PS_INTERPOLATE_FLAT);
+                           row+rowShift,NULL,0,-1,PS_INTERPOLATE_FLAT);
 
             if (fabsf(fRow[col] - fValue) > FLT_EPSILON) {
Index: /trunk/psLib/test/image/tst_psImageStats03.c
===================================================================
--- /trunk/psLib/test/image/tst_psImageStats03.c	(revision 1908)
+++ /trunk/psLib/test/image/tst_psImageStats03.c	(revision 1909)
@@ -46,5 +46,9 @@
             x = 0.2 + (float) i;
             y = 0.2 + (float) j;
-            pixel = psImagePixelInterpolate(tmpImage, x, y,0,PS_INTERPOLATE_BILINEAR);
+            pixel = psImagePixelInterpolate(tmpImage,
+                                            x, y,
+                                            NULL, 0,
+                                            0,
+                                            PS_INTERPOLATE_BILINEAR);
             printf("%.1f ", pixel);
         }
@@ -56,5 +60,9 @@
             x = 0.2 + (float) i;
             y = 0.2 + (float) j;
-            pixel = psImagePixelInterpolate(tmpImage, x, y,0,PS_INTERPOLATE_BILINEAR);
+            pixel = psImagePixelInterpolate(tmpImage,
+                                            x, y,
+                                            NULL,0,
+                                            0,
+                                            PS_INTERPOLATE_BILINEAR);
             printf("image[%.1f][%.1f] is interpolated at %.1f\n", x, y, pixel);
         }
