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