Index: trunk/psLib/src/sys/psLogMsg.c
===================================================================
--- trunk/psLib/src/sys/psLogMsg.c	(revision 19885)
+++ trunk/psLib/src/sys/psLogMsg.c	(revision 20529)
@@ -11,6 +11,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.70 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2008-10-03 21:55:52 $
+ *  @version $Revision: 1.71 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2008-11-04 18:36:54 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -315,5 +315,5 @@
     *head_ptr = '\0';
 
-    write(logFD, head, strlen(head));
+    (void)write(logFD, head, strlen(head));
     if (logMsg) {
         psString msg = NULL;            // Message to print
@@ -324,12 +324,12 @@
         char *line = strtok_r(msg, "\n", &msgPtr);
         while (line) {
-            write(logFD, "    ", 4);
-            write(logFD, line, strlen(line));
-            write(logFD, "\n", 1);
+            (void)write(logFD, "    ", 4);
+            (void)write(logFD, line, strlen(line));
+            (void)write(logFD, "\n", 1);
             line = strtok_r(NULL, "\n", &msgPtr);
         }
         psFree(msg);
     } else {
-        write(logFD, "\n", 1);
+        (void)write(logFD, "\n", 1);
     }
 
