Index: trunk/Ohana/src/opihi/pantasks/kill.c
===================================================================
--- trunk/Ohana/src/opihi/pantasks/kill.c	(revision 6687)
+++ trunk/Ohana/src/opihi/pantasks/kill.c	(revision 7917)
@@ -7,5 +7,5 @@
 
   if (argc < 2) {
-    fprintf (stderr, "USAGE: kill (JobID)\n");
+    gprint (GP_ERR, "USAGE: kill (JobID)\n");
     return (FALSE);
   }
@@ -17,5 +17,5 @@
     if (!KillLocalJob (job)) {
       job[0].state = JOB_HUNG;
-      if (VerboseMode()) fprintf (stderr, "child process %d is hung, cannot kill\n", job[0].pid);
+      if (VerboseMode()) gprint (GP_LOG, "child process %d is hung, cannot kill\n", job[0].pid);
       return (FALSE);
     }
@@ -23,10 +23,10 @@
     if (!KillControllerJob (job)) {
       job[0].state = JOB_HUNG;
-      if (VerboseMode()) fprintf (stderr, "child process %d is hung, cannot kill\n", job[0].pid);
+      if (VerboseMode()) gprint (GP_LOG, "child process %d is hung, cannot kill\n", job[0].pid);
       return (FALSE);
     }
   }    
     
-  fprintf (stderr, "this function is not yet implemented\n");
+  gprint (GP_ERR, "this function is not yet implemented\n");
   return (TRUE);
 }
