Index: trunk/psLib/test/collections/tst_psHash03.c
===================================================================
--- trunk/psLib/test/collections/tst_psHash03.c	(revision 1811)
+++ trunk/psLib/test/collections/tst_psHash03.c	(revision 2204)
@@ -11,6 +11,6 @@
 #include "psMemory.h"
 #define NUM_HASH_TABLE_BUCKETS 100
-int imGlobal = 0;
-int currentId = 0;
+psS32 imGlobal = 0;
+psS32 currentId = 0;
 
 typedef struct
@@ -27,5 +27,5 @@
     psMemBlock **memBlocks = NULL;
     psMemBlock *tmp = NULL;
-    int numBlocks = 0;
+    psS32 numBlocks = 0;
 
     numBlocks = psMemCheckLeaks(currentId, &memBlocks, NULL);
@@ -36,5 +36,5 @@
     if (memBlocks != NULL) {
         for (tmp = *memBlocks; tmp != NULL; tmp = tmp->nextBlock) {
-            printf("%d ", (int) tmp->id);
+            printf("%d ", (psS32) tmp->id);
         }
     }
@@ -62,11 +62,11 @@
 }
 
-int main()
+psS32 main()
 {
     psHash *myHashTable = NULL;
-    int testStatus      = true;
-    int i               = 0;
-    int TotalKeys       = 0;
-    bool retVal         = false;
+    psS32 testStatus      = true;
+    psS32 i               = 0;
+    psS32 TotalKeys       = 0;
+    psBool retVal         = false;
     ID *id = NULL;
     ID *ids[4];
@@ -75,5 +75,5 @@
     char *myData[] = {"IDA", "IDB", "IDC", "IDD", NULL
                      };
-    int memLeaks        = 0;
+    psS32 memLeaks        = 0;
 
     currentId = psMemGetId();
