Index: trunk/Ohana/src/opihi/cmd.astro/objload.c
===================================================================
--- trunk/Ohana/src/opihi/cmd.astro/objload.c	(revision 7680)
+++ trunk/Ohana/src/opihi/cmd.astro/objload.c	(revision 7917)
@@ -27,5 +27,5 @@
 
   if (argc != 3) {
-    fprintf (stderr, "USAGE: objload (overlay) <filename>\n");
+    gprint (GP_ERR, "USAGE: objload (overlay) <filename>\n");
     return (FALSE);
   }
@@ -33,5 +33,5 @@
   f = fopen (argv[2], "r");
   if (f == (FILE *) NULL) {
-    fprintf (stderr, "ERROR: can't find object file %s\n", argv[2]);
+    gprint (GP_ERR, "ERROR: can't find object file %s\n", argv[2]);
     return (FALSE);
   }
@@ -69,5 +69,5 @@
   free (line);
 
-  fprintf (stderr, "loaded %d objects\n", Noverlay);
+  gprint (GP_ERR, "loaded %d objects\n", Noverlay);
   return (TRUE);
 }
