Index: trunk/psLib/test/collections/tst_psHash01.c
===================================================================
--- trunk/psLib/test/collections/tst_psHash01.c	(revision 4353)
+++ trunk/psLib/test/collections/tst_psHash01.c	(revision 4392)
@@ -21,5 +21,5 @@
 {
     ID *id = psAlloc(sizeof(ID));
-    psMemSetDeallocator(id,(psFreeFcn)IdFree);
+    psMemSetDeallocator(id,(psFreeFunc)IdFree);
     id->name = psStringCopy(name);
 
Index: trunk/psLib/test/collections/tst_psHash02.c
===================================================================
--- trunk/psLib/test/collections/tst_psHash02.c	(revision 4353)
+++ trunk/psLib/test/collections/tst_psHash02.c	(revision 4392)
@@ -24,5 +24,5 @@
 {
     ID *id = psAlloc(sizeof(ID));
-    psMemSetDeallocator(id,(psFreeFcn)IdFree);
+    psMemSetDeallocator(id,(psFreeFunc)IdFree);
     id->name = psStringCopy(name);
 
Index: trunk/psLib/test/collections/tst_psHash03.c
===================================================================
--- trunk/psLib/test/collections/tst_psHash03.c	(revision 4353)
+++ trunk/psLib/test/collections/tst_psHash03.c	(revision 4392)
@@ -26,5 +26,5 @@
 
     id = psAlloc(sizeof(ID));
-    psMemSetDeallocator(id,(psFreeFcn)IdFree);
+    psMemSetDeallocator(id,(psFreeFunc)IdFree);
 
     id->name = psStringCopy(name);
Index: trunk/psLib/test/collections/tst_psHash04.c
===================================================================
--- trunk/psLib/test/collections/tst_psHash04.c	(revision 4353)
+++ trunk/psLib/test/collections/tst_psHash04.c	(revision 4392)
@@ -19,5 +19,5 @@
 {
     ID *id = psAlloc(sizeof(ID));
-    psMemSetDeallocator(id,(psFreeFcn)IdFree);
+    psMemSetDeallocator(id,(psFreeFunc)IdFree);
 
     id->name = psStringCopy(name);
