Index: trunk/psLib/src/sysUtils/psAbort.c
===================================================================
--- trunk/psLib/src/sysUtils/psAbort.c	(revision 4298)
+++ trunk/psLib/src/sysUtils/psAbort.c	(revision 4307)
@@ -10,6 +10,6 @@
  *  @author Eric Van Alst, MHPCC
  *   
- *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-02-17 19:26:24 $
+ *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-17 23:39:51 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -21,13 +21,13 @@
 #include "psLogMsg.h"
 
-void psAbort(const char *name, const char *fmt, ...)
+void psAbort(const char *name, const char *format, ...)
 {
     va_list argPtr;             // variable list arguement pointer
 
     // Get the variable list parameters to pass to logging function
-    va_start(argPtr, fmt);
+    va_start(argPtr, format);
 
     // Call logging function with PS_LOG_ABORT level
-    psLogMsgV(name, PS_LOG_ABORT, fmt, argPtr);
+    psLogMsgV(name, PS_LOG_ABORT, format, argPtr);
 
     // Clean up stack after variable arguement has been used
Index: trunk/psLib/src/sysUtils/psAbort.h
===================================================================
--- trunk/psLib/src/sysUtils/psAbort.h	(revision 4298)
+++ trunk/psLib/src/sysUtils/psAbort.h	(revision 4307)
@@ -12,6 +12,6 @@
  *  @author Eric Van Alst, MHPCC
  *
- *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-08 23:40:45 $
+ *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-17 23:39:51 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -39,5 +39,5 @@
 void psAbort(
     const char *name,                  ///< Source of abort such as file or function detected
-    const char *fmt,                   ///< A printf style formatting statement defining msg
+    const char *format,                   ///< A printf style formatting statement defining msg
     ...
 );
