Index: trunk/psLib/src/sys/psLogMsg.c
===================================================================
--- trunk/psLib/src/sys/psLogMsg.c	(revision 4315)
+++ trunk/psLib/src/sys/psLogMsg.c	(revision 4316)
@@ -12,6 +12,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.44 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-09 06:13:14 $
+ *  @version $Revision: 1.45 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-18 03:13:02 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -363,10 +363,10 @@
    NULL
  *****************************************************************************/
-void psLogMsg(const char *name, psS32 level, const char *fmt, ...)
+void psLogMsg(const char *name, int level, const char *format, ...)
 {
     va_list ap;
 
-    va_start(ap, fmt);
-    psLogMsgV(name, level, fmt, ap);
+    va_start(ap, format);
+    psLogMsgV(name, level, format, ap);
     va_end(ap);
 }
Index: trunk/psLib/src/sys/psLogMsg.h
===================================================================
--- trunk/psLib/src/sys/psLogMsg.h	(revision 4315)
+++ trunk/psLib/src/sys/psLogMsg.h	(revision 4316)
@@ -11,6 +11,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-09 06:12:31 $
+ *  @version $Revision: 1.25 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-18 03:13:02 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -67,6 +67,6 @@
 void psLogMsg(
     const char *name,                  ///< name of the log source
-    psS32 myLevel,                       ///< severity level of this log message
-    const char *fmt,                   ///< printf-style format command
+    int level,                       ///< severity level of this log message
+    const char *format,                   ///< printf-style format command
     ...
 );
