Index: trunk/psLib/test/image/tst_psImageManip.c
===================================================================
--- trunk/psLib/test/image/tst_psImageManip.c	(revision 1509)
+++ trunk/psLib/test/image/tst_psImageManip.c	(revision 1605)
@@ -6,6 +6,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-12 03:11:08 $
+ *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-20 02:55:42 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -788,5 +788,5 @@
 
     stats.options = PS_STAT_SAMPLE_MEAN;
-    out = psImageRebin(NULL,in,4,&stats);
+    out = psImageRebin(NULL,in,NULL,0,4,&stats);
 
     if (out == NULL) {
@@ -816,5 +816,5 @@
 
     stats.options = PS_STAT_MAX;
-    out2 = psImageRebin(out,in,3,&stats);
+    out2 = psImageRebin(out,in,NULL,0,3,&stats);
 
     // Verify the returned psImage structure is equal to the input parameter
@@ -853,5 +853,5 @@
     // doesn't stop, if the input parameter input is null.
 
-    out2 = psImageRebin(NULL,NULL,1,&stats);
+    out2 = psImageRebin(NULL,NULL,NULL,0,1,&stats);
 
     if (out2 != NULL) {
@@ -864,5 +864,5 @@
     // doesn't stop, if the input parameter scale is less than or equal to zero.
     psLogMsg(__func__,PS_LOG_INFO,"Following should be an error.");
-    out2 = psImageRebin(NULL,in,0,&stats);
+    out2 = psImageRebin(NULL,in,NULL,0,0,&stats);
 
     if (out2 != NULL) {
@@ -875,5 +875,5 @@
     // doesn't stop, if the input parameter stats is null.
     psLogMsg(__func__,PS_LOG_INFO,"Following should be an error.");
-    out2 = psImageRebin(NULL,in,1,NULL);
+    out2 = psImageRebin(NULL,in,NULL,0,1,NULL);
 
     if (out2 != NULL) {
@@ -889,5 +889,5 @@
     psLogMsg(__func__,PS_LOG_INFO,"Following should be an error.");
     stats.options = 0;
-    out2 = psImageRebin(NULL,in,1,&stats);
+    out2 = psImageRebin(NULL,in,NULL,0,1,&stats);
 
     if (out2 != NULL) {
@@ -899,5 +899,5 @@
     psLogMsg(__func__,PS_LOG_INFO,"Following should be an error.");
     stats.options = PS_STAT_USE_RANGE;
-    out2 = psImageRebin(NULL,in,1,&stats);
+    out2 = psImageRebin(NULL,in,NULL,0,1,&stats);
 
     if (out2 != NULL) {
@@ -912,5 +912,5 @@
     psLogMsg(__func__,PS_LOG_INFO,"Following should be an error.");
     stats.options = PS_STAT_SAMPLE_MEAN + PS_STAT_MAX;
-    out2 = psImageRebin(NULL,in,1,&stats);
+    out2 = psImageRebin(NULL,in,NULL,0,1,&stats);
 
     if (out2 != NULL) {
