Index: trunk/psLib/src/sys/psError.c
===================================================================
--- trunk/psLib/src/sys/psError.c	(revision 4315)
+++ trunk/psLib/src/sys/psError.c	(revision 4342)
@@ -10,6 +10,6 @@
  *  @author Eric Van Alst, MHPCC
  *
- *  @version $Revision: 1.25 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-18 02:30:50 $
+ *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-22 02:05:41 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -67,10 +67,10 @@
 }
 
-psErrorCode p_psError(const char* file,
-                      int lineno,
+psErrorCode p_psError(const char* filename,
+                      unsigned int lineno,
                       const char* func,
                       psErrorCode code,
-                      psBool new,
-                      const char* fmt,
+                      bool new,
+                      const char* format,
                       ...)
 {
@@ -79,5 +79,5 @@
     char msgName[1024];
 
-    snprintf(msgName,1024,"%s (%s:%d)",func,file,lineno);
+    snprintf(msgName,1024,"%s (%s:%d)",func,filename,lineno);
 
     va_list argPtr;             // variable list arguement pointer
@@ -88,7 +88,7 @@
 
     // Get the variable list parameters to pass to logging function
-    va_start(argPtr, fmt);
-
-    vsnprintf(errMsg,2048,fmt,argPtr);
+    va_start(argPtr, format);
+
+    vsnprintf(errMsg,2048,format,argPtr);
     err = psErrAlloc(msgName,code,errMsg);
     pushErrorStack(err);
