Index: trunk/psLib/test/sysUtils/tst_psTrace00.c
===================================================================
--- trunk/psLib/test/sysUtils/tst_psTrace00.c	(revision 905)
+++ trunk/psLib/test/sysUtils/tst_psTrace00.c	(revision 1136)
@@ -16,5 +16,5 @@
                             "psTraceSetLevel() and psTraceGetLevel()");
     for (i=0;i<10;i++) {
-        psTraceSetLevel(".", i);
+        (void)psTraceSetLevel(".", i);
         lev = psTraceGetLevel(".");
         if (lev != i) {
@@ -24,8 +24,8 @@
         }
     }
-    psTraceSetLevel(".", 3);
+    (void)psTraceSetLevel(".", 3);
 
     for (i=5;i<10;i++) {
-        psTraceSetLevel(".NODE00", i);
+        (void)psTraceSetLevel(".NODE00", i);
         lev = psTraceGetLevel(".NODE00");
         if (lev != i) {
@@ -44,7 +44,7 @@
 
 
-    psTraceSetLevel(".NODE00.NODE01", 4);
+    (void)psTraceSetLevel(".NODE00.NODE01", 4);
     for (i=0;i<10;i++) {
-        psTraceSetLevel(".NODE00.NODE01", i);
+        (void)psTraceSetLevel(".NODE00.NODE01", i);
         lev = psTraceGetLevel(".NODE00.NODE01");
         if (lev != i) {
