Index: trunk/psLib/test/collections/tst_psArray.c
===================================================================
--- trunk/psLib/test/collections/tst_psArray.c	(revision 4308)
+++ trunk/psLib/test/collections/tst_psArray.c	(revision 4457)
@@ -17,6 +17,6 @@
  *  @author  Ross Harman, MHPCC
  *
- *  @version $Revision: 1.14 $  $Name: not supported by cvs2svn $
- *  @date  $Date: 2005-06-17 23:44:22 $
+ *  @version $Revision: 1.15 $  $Name: not supported by cvs2svn $
+ *  @date  $Date: 2005-07-06 03:04:35 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -103,10 +103,10 @@
         }
     }
-    fprintf(stderr,"array size = %d\n", psArr->nalloc);
+    fprintf(stderr,"array size = %ld\n", psArr->nalloc);
     if (psArr->nalloc != 5) {
         psError(PS_ERR_UNKNOWN, true,"Array Size wrong");
         return 3;
     }
-    fprintf(stderr,"array population = %d\n", psArr->n);
+    fprintf(stderr,"array population = %ld\n", psArr->n);
     if (psArr->n != 5) {
         psError(PS_ERR_UNKNOWN, true,"Array population wrong");
@@ -137,10 +137,10 @@
         }
     }
-    fprintf(stderr,"array size = %d\n", psArr->nalloc);
+    fprintf(stderr,"array size = %ld\n", psArr->nalloc);
     if (psArr->nalloc != 10) {
         psError(PS_ERR_UNKNOWN, true,"Array Size wrong");
         return 6;
     }
-    fprintf(stderr,"array population = %d\n", psArr->n);
+    fprintf(stderr,"array population = %ld\n", psArr->n);
     if (psArr->n != 10) {
         psError(PS_ERR_UNKNOWN, true,"Array Population wrong");
@@ -160,10 +160,10 @@
         }
     }
-    fprintf(stderr,"array size = %d\n", psArr->nalloc);
+    fprintf(stderr,"array size = %ld\n", psArr->nalloc);
     if (psArr->nalloc != 3) {
         psError(PS_ERR_UNKNOWN, true,"Array Size wrong");
         return 9;
     }
-    fprintf(stderr,"array population = %d\n", psArr->n);
+    fprintf(stderr,"array population = %ld\n", psArr->n);
     if (psArr->n != 3) {
         psError(PS_ERR_UNKNOWN, true,"Array Population wrong");
@@ -189,5 +189,5 @@
         return 100;
     }
-    fprintf(stderr,"Array size after removal = %d\n",psArr->n);
+    fprintf(stderr,"Array size after removal = %ld\n",psArr->n);
     if ( psArr->n != 2 ) {
         psError(PS_ERR_UNKNOWN, true, "Items in array not decremented after removal");
@@ -274,10 +274,10 @@
         }
     }
-    fprintf(stderr,"array size = %d\n", psArr->nalloc);
+    fprintf(stderr,"array size = %ld\n", psArr->nalloc);
     if (psArr->nalloc != 10) {
         psError(PS_ERR_UNKNOWN, true,"Array Size wrong");
         return 3;
     }
-    fprintf(stderr,"array population = %d\n", psArr->n);
+    fprintf(stderr,"array population = %ld\n", psArr->n);
     if (psArr->n != 10) {
         psError(PS_ERR_UNKNOWN, true,"Array population wrong");
