Index: trunk/psLib/src/sys/psError.h
===================================================================
--- trunk/psLib/src/sys/psError.h	(revision 8800)
+++ trunk/psLib/src/sys/psError.h	(revision 8802)
@@ -12,6 +12,6 @@
  *  @author Eric Van Alst, MHPCC
  *
- *  @version $Revision: 1.30 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-09-12 21:10:22 $
+ *  @version $Revision: 1.31 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-09-12 21:39:47 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -88,5 +88,5 @@
  *  The entire error stack may be printed to an open file descriptor by
  *  calling psErrorStackPrint; if and only if there are current errors, the
- *  printf-style string fmt is first printed to the file descriptor fd. In
+ *  printf-style string format is first printed to the file descriptor fd. In
  *  this printout, error codes are replaced by their string equivalents.
  *
@@ -96,5 +96,5 @@
     FILE* fd,                          ///< destination file descriptor
     const char* format,                ///< printf-style format of header line
-    ...                                ///< any parameters required in fmt
+    ...                                ///< any parameters required in format
 ) __attribute__((format(printf, 2, 3)));
 #else // __GNUC__
@@ -102,5 +102,5 @@
     FILE* fd,                          ///< destination file descriptor
     const char* format,                ///< printf-style format of header line
-    ...                                ///< any parameters required in fmt
+    ...                                ///< any parameters required in format
 );
 #endif // __GNUC__
@@ -112,5 +112,5 @@
  *  The entire error stack may be printed to an open file descriptor by
  *  calling psErrorStackPrintV; if and only if there are current errors, the
- *  vprintf-style string fmt is first printed to the file descriptor fd. In
+ *  vprintf-style string format is first printed to the file descriptor fd. In
  *  this printout, error codes are replaced by their string equivalents.
  *
@@ -119,5 +119,5 @@
     FILE* fd,                          ///< destination file descriptor
     const char* format,                   ///< printf-style format of header line
-    va_list va                         ///< any parameters required in fmt
+    va_list va                         ///< any parameters required in format
 );
 #endif // #ifndef SWIG
@@ -127,5 +127,5 @@
  *
  *  This function will invoke the psLogMsg function with a level of
- *  PS_LOG_ERROR and pass the parameters name and fmt to generate a proper
+ *  PS_LOG_ERROR and pass the parameters name and format to generate a proper
  *  log message.
  *
@@ -137,6 +137,6 @@
     psErrorCode code,                  ///< Error class code
     psBool new,                        ///< true if error originates at this location
-    const char* fmt,                   ///< printf-style format of header line
-    ...                                ///< any parameters required in fmt
+    const char* format,                ///< printf-style format of header line
+    ...                                ///< any parameters required in format
 );
 
@@ -149,6 +149,6 @@
  */
 void psWarning(
-    const char* fmt,                   ///< printf-style format of header line
-    ...                                ///< any parameters required in fmt
+    const char* format,                ///< printf-style format of header line
+    ...                                ///< any parameters required in format
 );
 #else // #ifdef DOXYGEN
@@ -157,5 +157,5 @@
  *
  *  This function will invoke the psLogMsg function with a level of
- *  PS_LOG_ERROR and pass the parameters name and fmt to generate a proper
+ *  PS_LOG_ERROR and pass the parameters name and format to generate a proper
  *  log message.  This function is used to check a specific code location.
  *
@@ -172,5 +172,5 @@
     bool new,                          ///< true if error originates at this location
     const char* format,                ///< printf-style format of header line
-    ...                                ///< any parameters required in fmt
+    ...                                ///< any parameters required in format
 ) __attribute__((format(printf, 6, 7)));
 #else // __GNUC__
@@ -182,5 +182,5 @@
     bool new,                          ///< true if error originates at this location
     const char* format,                ///< printf-style format of header line
-    ...                                ///< any parameters required in fmt
+    ...                                ///< any parameters required in format
 );
 #endif // __GNUC__
@@ -199,5 +199,5 @@
     const char* func,                  ///< function name
     const char* format,                ///< printf-style format of header line
-    ...                                ///< any parameters required in fmt
+    ...                                ///< any parameters required in format
 ) __attribute__((format(printf, 4, 5)));
 #else // __GNUC__
@@ -207,5 +207,5 @@
     const char* func,                  ///< function name
     const char* format,                ///< printf-style format of header line
-    ...                                ///< any parameters required in fmt
+    ...                                ///< any parameters required in format
 );
 #endif // __GNUC__
