Index: trunk/psLib/test/image/tst_psImageManip.c
===================================================================
--- trunk/psLib/test/image/tst_psImageManip.c	(revision 1906)
+++ 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 1906)
+++ 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);
         }
