Index: trunk/psLib/src/sysUtils/psTrace.h
===================================================================
--- trunk/psLib/src/sysUtils/psTrace.h	(revision 1440)
+++ trunk/psLib/src/sysUtils/psTrace.h	(revision 1441)
@@ -10,14 +10,14 @@
  *  @author George Gusciora, MHPCC
  *
- *  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-09 23:34:58 $
+ *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-09 23:40:55 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
  */
 #if !defined(PS_TRACE_H)
-#    define PS_TRACE_H 1
+#define PS_TRACE_H 1
 
-#    define PS_UNKNOWN_TRACE_LEVEL -9999   // we don't know this name's level
-#    define PS_DEFAULT_TRACE_LEVEL 0
+#define PS_UNKNOWN_TRACE_LEVEL -9999   // we don't know this name's level
+#define PS_DEFAULT_TRACE_LEVEL 0
 
 /** \addtogroup LogTrace
@@ -29,33 +29,33 @@
 //#define PS_NO_TRACE 1   ///< to turn off all tracing
 
-#    if defined(PS_NO_TRACE)
-    #        define psTrace(facil, level, ...) (void)0
-    /* do nothing */
-    #        define p_psTrace(facil, level, ...)  (void)0
-    /* do nothing */
-    #        define psTraceSetLevel(facil,level) 0
-    #        define psTraceGetLevel(facil) 0
-    #        define psTraceReset() (void)0     /* do nothing */
-    #        define psTraceFree() (void)0      /* do nothing */
-    #        define psTracePrintLevels() (void)0
-    /* do nothing */
-    #        define psTraceSetDestination(fp) (void)0
-    /* do nothing */
-    #    else
+#if defined(PS_NO_TRACE)
+#        define psTrace(facil, level, ...) (void)0
+/* do nothing */
+#        define p_psTrace(facil, level, ...)  (void)0
+/* do nothing */
+#        define psTraceSetLevel(facil,level) 0
+#        define psTraceGetLevel(facil) 0
+#        define psTraceReset() (void)0     /* do nothing */
+#        define psTraceFree() (void)0      /* do nothing */
+#        define psTracePrintLevels() (void)0
+/* do nothing */
+#        define psTraceSetDestination(fp) (void)0
+/* do nothing */
+#    else
 
-        /** Basic structure for the component tree.  A component is a string of the
-            form aaa.bbb.ccc, and may itself contain further subcomponents.  The
-            Component structure doesn't in fact contain it's full name, but only the
-            last part. */
-        typedef struct p_psComponent
-        {
-            const char *name;           // last part of name of component
-            int level;                  // trace level for this component
-            int n;                      // number of subcomponents
-            struct p_psComponent* *subcomp;     // next level of subcomponents
-        }
+    /** Basic structure for the component tree.  A component is a string of the
+        form aaa.bbb.ccc, and may itself contain further subcomponents.  The
+        Component structure doesn't in fact contain it's full name, but only the
+        last part. */
+    typedef struct p_psComponent
+    {
+        const char *name;           // last part of name of component
+        int level;                  // trace level for this component
+        int n;                      // number of subcomponents
+        struct p_psComponent* *subcomp;     // next level of subcomponents
+    }
 p_psComponent;
 
-#        ifndef DOXYGEN
+#ifndef DOXYGEN
 /// Send a trace message
 void p_psTrace(const char *facil,       ///< facilty of interest
@@ -63,5 +63,5 @@
                ...)             ///< trace message arguments
 ;
-#        endif
+#endif
 
 /// Set trace level
@@ -88,6 +88,6 @@
 /* \} */// End of SystemGroup Functions
 
-#        define psTrace(facil, level, ...) p_psTrace(facil, level, __VA_ARGS__)
-#    endif
+#define psTrace(facil, level, ...) p_psTrace(facil, level, __VA_ARGS__)
+#endif
 
 #endif
