Index: trunk/psLib/src/sys/psConfigure.c
===================================================================
--- trunk/psLib/src/sys/psConfigure.c	(revision 3264)
+++ trunk/psLib/src/sys/psConfigure.c	(revision 4137)
@@ -1,9 +1,10 @@
 /** @file  psConfigure.c
  *
- *  @brief Contains the declarations for initialization, memory finalization, and configuration.
+ *  @brief Contains the declarations for initialization, memory finalization,
+ *   and configuration.
  *
- *  These functions initalize psLib data before the beginning of a run and remove (finalize) the
- *  same data after the run is complete. A function is also provided to return the current
- *  psLib version.
+ *  These functions initalize psLib data before the beginning of a run and
+ *  remove (finalize) the same data after the run is complete. A function is
+ *  also provided to return the current psLib version.
  *
  *  @ingroup Configure
@@ -12,6 +13,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-02-17 19:26:24 $
+ *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-07 22:53:40 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -34,10 +35,10 @@
 void psLibInit(bool predictable, const char* timeConfig)
 {
-    // Still needs error codes to be set
-    // Still needs random number generator initialization
-    // Please code me, Robert and George.
+    // XXX: Still needs error codes to be set
+    // XXX: Still needs random number generator initialization
 
     if(!p_psTimeInit(timeConfig)) {
-        psError(PS_ERR_BAD_PARAMETER_VALUE, true, PS_ERRORTEXT_psConfigure_INITIALIZATION_FAILED, "psTime");
+        psError(PS_ERR_BAD_PARAMETER_VALUE, true,
+                PS_ERRORTEXT_psConfigure_INITIALIZATION_FAILED, "psTime");
         return;
     }
@@ -49,5 +50,6 @@
 
     if(!p_psTimeFinalize()) {
-        psError(PS_ERR_BAD_PARAMETER_VALUE, true, PS_ERRORTEXT_psConfigure_FINALIZATION_FAILED, "psTime");
+        psError(PS_ERR_BAD_PARAMETER_VALUE, true,
+                PS_ERRORTEXT_psConfigure_FINALIZATION_FAILED, "psTime");
         return;
     }
