Index: /branches/eam_branches/Ohana.20100606/src/addstar/src/sky_tessalation.c
===================================================================
--- /branches/eam_branches/Ohana.20100606/src/addstar/src/sky_tessalation.c	(revision 28237)
+++ /branches/eam_branches/Ohana.20100606/src/addstar/src/sky_tessalation.c	(revision 28238)
@@ -940,5 +940,5 @@
 int dvo_image_clear_vtable (FITS_DB *db) {
 
-  int i;
+  int i, nbytes;
 
   // free memory used by the current vtable rows
@@ -951,5 +951,6 @@
 
   // reset db[0].theader(NAXIS1) to match Image
-  gfits_modify (&db[0].theader, "NAXIS1", OFF_T_FMT, 1,  sizeof(Image));
+  nbytes = sizeof(Image);
+  gfits_modify (&db[0].theader, "NAXIS1", "%d", 1,  nbytes);
   db[0].theader.Naxis[0] = sizeof(Image);
 
Index: /branches/eam_branches/Ohana.20100606/src/opihi/pcontrol/StartHost.c
===================================================================
--- /branches/eam_branches/Ohana.20100606/src/opihi/pcontrol/StartHost.c	(revision 28237)
+++ /branches/eam_branches/Ohana.20100606/src/opihi/pcontrol/StartHost.c	(revision 28238)
@@ -14,7 +14,6 @@
   if (VarConfig ("SHELL", "%s", shell)     == NULL) strcpy (shell, "pclient");
 
-#ifndef __APPLE__
-  if (VerboseMode()) gprint (GP_ERR, "starting host within thread "OFF_T_FMT"\n",  pthread_self());
-#endif
+  if (VerboseMode()) gprint (GP_ERR, "starting host within thread\n");
+
   pid = rconnect (command, host[0].hostname, shell, stdio);
   if (!pid) {     
Index: /branches/eam_branches/Ohana.20100606/src/opihi/pcontrol/StopHosts.c
===================================================================
--- /branches/eam_branches/Ohana.20100606/src/opihi/pcontrol/StopHosts.c	(revision 28237)
+++ /branches/eam_branches/Ohana.20100606/src/opihi/pcontrol/StopHosts.c	(revision 28238)
@@ -128,7 +128,5 @@
   int i, result, waitstatus;
 
-#ifndef __APPLE__
-  if (VerboseMode()) gprint (GP_ERR, "harvesting within thread "OFF_T_FMT"\n",  pthread_self());
-#endif
+  if (VerboseMode()) gprint (GP_ERR, "harvesting within thread\n");
   if (VerboseMode()) gprint (GP_ERR, "child process %d is down, wait for exit status\n", pid);
   
