Index: /trunk/psLib/src/sys/psTrace.c
===================================================================
--- /trunk/psLib/src/sys/psTrace.c	(revision 5111)
+++ /trunk/psLib/src/sys/psTrace.c	(revision 5112)
@@ -9,6 +9,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.59 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-09-20 00:31:22 $
+ *  @version $Revision: 1.60 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-09-23 21:57:12 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -657,5 +657,5 @@
     va_list ap;
     va_start(ap, format);
-    format = va_arg(ap, char *);
+    //    format = va_arg(ap, char *);
     psTraceV(comp, level, format, ap);
     va_end(ap);
Index: /trunk/psLib/test/sys/tst_psTrace.c
===================================================================
--- /trunk/psLib/test/sys/tst_psTrace.c	(revision 5111)
+++ /trunk/psLib/test/sys/tst_psTrace.c	(revision 5112)
@@ -103,7 +103,7 @@
     (void)psTraceSetLevel(".A.B.C.D.E", 5);
 
-    psTrace(".A.C.D.C",1," ","You should not see this.\n");
-    psTrace(".A.B.C.D.E",2," ","You should see this.\n");
-    psTrace(".A.B.C.D.E.F",3," ","You should see this too.\n");
+    psTrace(".A.C.D.C",1,"You should not see this.\n");
+    psTrace(".A.B.C.D.E",2,"You should see this.\n");
+    psTrace(".A.B.C.D.E.F",3,"You should see this too.\n");
 
     psTracePrintLevels();
@@ -206,23 +206,23 @@
 
         (void)psTraceSetLevel(".", 4);
-        psTrace(".", 5, " ", "(0) This message should not be displayed (%x)\n",
+        psTrace(".", 5, "(0) This message should not be displayed (%x)\n",
                 0xbeefface);
         (void)psTraceSetLevel(".", 7);
-        psTrace(".", 5, " ", "(0) This message should be displayed (%x)\n",
+        psTrace(".", 5, "(0) This message should be displayed (%x)\n",
                 0xbeefface);
 
         (void)psTraceSetLevel(".a", 4);
-        psTrace(".a", 5, " ", "(1) This message should not be displayed (%x)\n",
+        psTrace(".a", 5, "(1) This message should not be displayed (%x)\n",
                 0xbeefface);
         (void)psTraceSetLevel(".a", 7);
-        psTrace(".a", 5, " ", "(1) This message should be displayed (%x)\n",
+        psTrace(".a", 5, "(1) This message should be displayed (%x)\n",
                 0xbeefface);
 
 
         (void)psTraceSetLevel(".a.b", 4);
-        psTrace(".a.b", 5, " ", "(2) This message should not be displayed (%x)\n",
+        psTrace(".a.b", 5, "(2) This message should not be displayed (%x)\n",
                 0xbeefface);
         (void)psTraceSetLevel(".a.b", 7);
-        psTrace(".a.b", 5, " ", "(2) This message should be displayed (%x)\n",
+        psTrace(".a.b", 5, "(2) This message should be displayed (%x)\n",
                 0xbeefface);
 
