Index: trunk/psLib/src/sys/psError.c
===================================================================
--- trunk/psLib/src/sys/psError.c	(revision 4330)
+++ 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);
Index: trunk/psLib/src/sys/psError.h
===================================================================
--- trunk/psLib/src/sys/psError.h	(revision 4330)
+++ trunk/psLib/src/sys/psError.h	(revision 4342)
@@ -12,6 +12,6 @@
  *  @author Eric Van Alst, MHPCC
  *
- *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-18 02:30:50 $
+ *  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-22 02:05:41 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -148,10 +148,10 @@
  */
 psErrorCode p_psError(
-    const char* file,                  ///< file name
-    int lineno,                        ///< line number in file
+    const char* filename,              ///< file name
+    unsigned int lineno,               ///< line number in file
     const char* func,                  ///< function name
     psErrorCode code,                  ///< Error class code
-    psBool new,                        ///< true if error originates at this location
-    const char* fmt,                   ///< printf-style format of header line
+    bool new,                          ///< true if error originates at this location
+    const char* format,                ///< printf-style format of header line
     ...                                ///< any parameters required in fmt
 );
Index: trunk/psLib/src/sys/psType.h
===================================================================
--- trunk/psLib/src/sys/psType.h	(revision 4330)
+++ trunk/psLib/src/sys/psType.h	(revision 4342)
@@ -10,6 +10,6 @@
 *  @author Ross Harman, MHPCC
 *
-*  @version $Revision: 1.34 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-06-17 00:11:08 $
+*  @version $Revision: 1.35 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-06-22 02:05:41 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -71,4 +71,5 @@
 #endif // !SWIG
 
+typedef char* psString;                ///< string value
 typedef void* psPtr;                   ///< void pointer
 typedef bool psBool;                   ///< boolean value
