Index: trunk/psLib/test/sysUtils/tst_psLogMsg.c
===================================================================
--- trunk/psLib/test/sysUtils/tst_psLogMsg.c	(revision 1702)
+++ trunk/psLib/test/sysUtils/tst_psLogMsg.c	(revision 2204)
@@ -8,10 +8,10 @@
 #include "psTest.h"
 
-static int testLogMsg00();
-static int testLogMsg01();
-static int testLogMsg02();
-static int testLogMsg03();
-static int testLogMsg04();
-static int testLogMsg05();
+static psS32 testLogMsg00();
+static psS32 testLogMsg01();
+static psS32 testLogMsg02();
+static psS32 testLogMsg03();
+static psS32 testLogMsg04();
+static psS32 testLogMsg05();
 
 testDescription tests[] = {
@@ -39,5 +39,5 @@
                           };
 
-int main( int argc, char* argv[] )
+psS32 main( psS32 argc, char* argv[] )
 {
     psLogSetLevel( PS_LOG_INFO );
@@ -48,5 +48,5 @@
 
 static void myLogMsg(const char *name,
-                     int level,
+                     psS32 level,
                      const char *fmt,
                      ...)
@@ -60,7 +60,7 @@
 }
 
-static int testLogMsg00()
-{
-    int i = 0;
+static psS32 testLogMsg00()
+{
+    psS32 i = 0;
 
     // Send a log messages for levels 0:9.  Only the first four messages
@@ -74,7 +74,7 @@
 }
 
-static int testLogMsg01()
-{
-    int i = 0;
+static psS32 testLogMsg01()
+{
+    psS32 i = 0;
 
     // Send a log messages for levels 0:9.  Only the first four messages
@@ -88,10 +88,10 @@
 }
 
-static int testLogMsg02()
+static psS32 testLogMsg02()
 {
 
     psLogSetLevel(9);
     // Send a log messages for levels 0:9.
-    for (int i=0;i<10;i++) {
+    for (psS32 i=0;i<10;i++) {
         psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
     }
@@ -105,7 +105,7 @@
 }
 
-static int testLogMsg03()
-{
-    int i;
+static psS32 testLogMsg03()
+{
+    psS32 i;
 
     fprintf(stderr,"------------- psLogSetFormat() -------------\n");
@@ -161,5 +161,5 @@
 
 
-int testLogMsg04()
+psS32 testLogMsg04()
 {
     psLogMsg("Under 15 chars", 0, "Hello World!\n");
@@ -173,7 +173,7 @@
 }
 
-int testLogMsg05()
-{
-    int i = 0;
+psS32 testLogMsg05()
+{
+    psS32 i = 0;
     FILE* file;
     char line[256];
