Index: trunk/Ohana/src/opihi/cmd.data/queueprint.c
===================================================================
--- trunk/Ohana/src/opihi/cmd.data/queueprint.c	(revision 4703)
+++ trunk/Ohana/src/opihi/cmd.data/queueprint.c	(revision 7917)
@@ -6,5 +6,5 @@
 
   if (argc != 2) {
-    fprintf (stderr, "USAGE: queueprint (name)\n");
+    gprint (GP_ERR, "USAGE: queueprint (name)\n");
     return (FALSE);
   }
@@ -12,9 +12,9 @@
   queue = FindQueue (argv[1]);
   if (queue == NULL) {
-    fprintf (stderr, "ERROR: queue %s not found\n", argv[1]);
+    gprint (GP_ERR, "ERROR: queue %s not found\n", argv[1]);
     return (FALSE);
   }
 
-  PrintQueue (GetOutfile(), queue);
+  PrintQueue (queue);
   return (TRUE);
 }
