Index: trunk/psLib/src/sys/psError.c
===================================================================
--- trunk/psLib/src/sys/psError.c	(revision 4308)
+++ trunk/psLib/src/sys/psError.c	(revision 4315)
@@ -10,6 +10,6 @@
  *  @author Eric Van Alst, MHPCC
  *
- *  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-04-07 20:27:41 $
+ *  @version $Revision: 1.25 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-18 02:30:50 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -177,17 +177,17 @@
 
 }
-void psErrorStackPrint(FILE *fd, const char *fmt, ...)
+void psErrorStackPrint(FILE *fd, const char *format, ...)
 {
     va_list argPtr;             // variable list arguement pointer
 
     // Get the variable list parameters to pass to logging function
-    va_start(argPtr, fmt);
-
-    psErrorStackPrintV(fd,fmt,argPtr);
+    va_start(argPtr, format);
+
+    psErrorStackPrintV(fd,format,argPtr);
 
     va_end(argPtr);
 }
 
-void psErrorStackPrintV(FILE *fd, const char *fmt, va_list va)
+void psErrorStackPrintV(FILE *fd, const char *format, va_list va)
 {
 
@@ -195,5 +195,5 @@
 
     if (errorStackSize > 0) {
-        vfprintf(fd,fmt,va);
+        vfprintf(fd,format,va);
 
         for (psS32 lcv=0;lcv<errorStackSize;lcv++) {
Index: trunk/psLib/src/sys/psError.h
===================================================================
--- trunk/psLib/src/sys/psError.h	(revision 4308)
+++ trunk/psLib/src/sys/psError.h	(revision 4315)
@@ -12,6 +12,6 @@
  *  @author Eric Van Alst, MHPCC
  *
- *  @version $Revision: 1.22 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-09 19:26:48 $
+ *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-18 02:30:50 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -86,5 +86,5 @@
 void psErrorStackPrint(
     FILE* fd,                          ///< destination file descriptor
-    const char* fmt,                   ///< printf-style format of header line
+    const char* format,                   ///< printf-style format of header line
     ...                                ///< any parameters required in fmt
 );
@@ -101,5 +101,5 @@
 void psErrorStackPrintV(
     FILE* fd,                          ///< destination file descriptor
-    const char* fmt,                   ///< printf-style format of header line
+    const char* format,                   ///< printf-style format of header line
     va_list va                         ///< any parameters required in fmt
 );
