Index: /trunk/psLib/src/sys/psLogMsg.h
===================================================================
--- /trunk/psLib/src/sys/psLogMsg.h	(revision 477)
+++ /trunk/psLib/src/sys/psLogMsg.h	(revision 478)
@@ -25,5 +25,5 @@
 /// Logs a message
 void psLogMsg(const char *name,  ///< name of the log source
-              int myLevel,   ///< severity level of this log message
+              int myLevel, ///< severity level of this log message
               const char *fmt, ...) ///< printf-style format command
 ;
@@ -31,14 +31,23 @@
 /// Logs a message from varargs
 void p_psVLogMsg(const char *name, ///< name of the log source
-                 int myLevel,  ///< severity level of this log message
+                 int myLevel, ///< severity level of this log message
                  const char *fmt,  ///< printf-style format command
-                 va_list ap)  ///< varargs argument list
+                 va_list ap) ///< varargs argument list
 ;
 
 /* \} */ // End of SystemGroup Functions
 
-enum { PS_LOG_ABORT = 0, PS_LOG_ERROR, PS_LOG_WARN, PS_LOG_INFO }; ///< Status codes for log messages
+///< Status codes for log messages
+enum {
+    PS_LOG_ABORT = 0,
+    PS_LOG_ERROR,
+    PS_LOG_WARN,
+    PS_LOG_INFO };
 
-enum { PS_LOG_NONE, PS_LOG_TO_STDERR, PS_LOG_TO_STDOUT }; ///< Destinations for log messages
+///< Destinations for log messages
+enum {
+    PS_LOG_NONE,
+    PS_LOG_TO_STDERR,
+    PS_LOG_TO_STDOUT };
 
 #endif
Index: /trunk/psLib/src/sysUtils/psLogMsg.h
===================================================================
--- /trunk/psLib/src/sysUtils/psLogMsg.h	(revision 477)
+++ /trunk/psLib/src/sysUtils/psLogMsg.h	(revision 478)
@@ -25,5 +25,5 @@
 /// Logs a message
 void psLogMsg(const char *name,  ///< name of the log source
-              int myLevel,   ///< severity level of this log message
+              int myLevel, ///< severity level of this log message
               const char *fmt, ...) ///< printf-style format command
 ;
@@ -31,14 +31,23 @@
 /// Logs a message from varargs
 void p_psVLogMsg(const char *name, ///< name of the log source
-                 int myLevel,  ///< severity level of this log message
+                 int myLevel, ///< severity level of this log message
                  const char *fmt,  ///< printf-style format command
-                 va_list ap)  ///< varargs argument list
+                 va_list ap) ///< varargs argument list
 ;
 
 /* \} */ // End of SystemGroup Functions
 
-enum { PS_LOG_ABORT = 0, PS_LOG_ERROR, PS_LOG_WARN, PS_LOG_INFO }; ///< Status codes for log messages
+///< Status codes for log messages
+enum {
+    PS_LOG_ABORT = 0,
+    PS_LOG_ERROR,
+    PS_LOG_WARN,
+    PS_LOG_INFO };
 
-enum { PS_LOG_NONE, PS_LOG_TO_STDERR, PS_LOG_TO_STDOUT }; ///< Destinations for log messages
+///< Destinations for log messages
+enum {
+    PS_LOG_NONE,
+    PS_LOG_TO_STDERR,
+    PS_LOG_TO_STDOUT };
 
 #endif
