Index: trunk/psLib/src/sys/psTrace.h
===================================================================
--- trunk/psLib/src/sys/psTrace.h	(revision 11694)
+++ trunk/psLib/src/sys/psTrace.h	(revision 12284)
@@ -9,6 +9,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.55 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2007-02-08 01:59:28 $
+ *  @version $Revision: 1.56 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-03-07 00:10:28 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -40,31 +40,31 @@
 // XXX EAM : the old 'empty' values of (void) 0 are dangerous
 # if defined(PS_NO_TRACE)
-    #   define psTrace(facil, level, ...)   /* do nothing */
-    #   define p_psTrace(facil, level, ...) /* do nothing */
-    #   define psTraceSetLevel(facil,level) /* do nothing */
-    #   define psTraceGetLevel(facil)       -INFINITY /* really really low level */
-    #   define psTraceReset()               /* do nothing */
-    #   define psTraceFree()                /* do nothing */
-    #   define psTracePrintLevels()         /* do nothing */
-    #   define psTraceSetDestination(fp)    /* do nothing */
-    #   define psTraceGetDestination()      2 /* destination is stderr */
-    #   define psTraceSetFormat(format)     /* do nothing */
-    #   define PS_TRACE_ON                  0
+#   define psTrace(facil, level, ...)   /* do nothing */
+#   define p_psTrace(facil, level, ...) /* do nothing */
+#   define psTraceSetLevel(facil,level) /* do nothing */
+#   define psTraceGetLevel(facil)       -INFINITY /* really really low level */
+#   define psTraceReset()               /* do nothing */
+#   define psTraceFree()                /* do nothing */
+#   define psTracePrintLevels()         /* do nothing */
+#   define psTraceSetDestination(fp)    /* do nothing */
+#   define psTraceGetDestination()      2 /* destination is stderr */
+#   define psTraceSetFormat(format)     /* do nothing */
+#   define PS_TRACE_ON                  0
 
-    # else /* PS_NO_TRACE */
-        #   define PS_TRACE_ON 1
+# else /* PS_NO_TRACE */
+#   define PS_TRACE_ON 1
 
-        /** 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
-            psS32 level;                       ///< trace level for this component
-            bool p_psSpecified;                ///< whether the component is specified
-            psS32 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
+    psS32 level;                       ///< trace level for this component
+    bool p_psSpecified;                ///< whether the component is specified
+    psS32 n;                           ///< number of subcomponents
+    struct p_psComponent* *subcomp;    ///< next level of subcomponents
+}
 p_psComponent;
 
