Index: trunk/psLib/src/sys/psLogMsg.c
===================================================================
--- trunk/psLib/src/sys/psLogMsg.c	(revision 4316)
+++ trunk/psLib/src/sys/psLogMsg.c	(revision 4321)
@@ -12,6 +12,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.45 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-18 03:13:02 $
+ *  @version $Revision: 1.46 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-20 22:42:30 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -64,5 +64,5 @@
  The old log level.
  *****************************************************************************/
-psS32 psLogSetLevel(psS32 level)
+int psLogSetLevel(int level)
 {
     // Save old global log level for changing it.
@@ -233,5 +233,5 @@
    ap
  *****************************************************************************/
-void psLogMsgV(const char *name, psS32 level, const char *fmt, va_list ap)
+void psLogMsgV(const char *name, int level, const char *format, va_list ap)
 {
     static psS32 first = 1;       // Flag for calling gethostname()
@@ -287,5 +287,5 @@
 
     default:
-        psTrace("utils.logMsg", 2, "Invalid logMsg level: %d (%s)\n", level, fmt);
+        psTrace("utils.logMsg", 2, "Invalid logMsg level: %d (%s)\n", level, format);
         level = (level < 0) ? 0 : 9;
         clevel = level + '0';
@@ -335,5 +335,5 @@
         char msg[1024];
         char* msgPtr;
-        vsnprintf(msg,1024, fmt, ap);  // create message
+        vsnprintf(msg,1024, format, ap);  // create message
 
         // detect multiple lines in message and indent each line by 4 spaces.
