03975645b9bf141119219c6ac2131ed4205fc71d
kent
  Fri Apr 26 19:26:33 2013 -0700
Fixing compile error that is making me wonder if para.c gets compiles usually.
diff --git src/parasol/paraHub/paraHub.c src/parasol/paraHub/paraHub.c
index d0260d5..fadbec6 100644
--- src/parasol/paraHub/paraHub.c
+++ src/parasol/paraHub/paraHub.c
@@ -1749,31 +1749,31 @@
         {
 	hostFound = TRUE;
 	dlRemove(node);
 	dlAddTail(freeMachines, node);
 	needsPlanning = TRUE;
 	mach->isDead = FALSE;
 
 	if (mach->deadJobIds != NULL)
 	    {
 	    struct dyString *dy = newDyString(0);
 	    struct slInt *i = mach->deadJobIds;
 	    dyStringPrintf(dy, "hub: node %s assigned ", name); 
 	    for(i = mach->deadJobIds; i; i = i->next)
 		dyStringPrintf(dy, "%d ", i->val);
 	    dyStringPrintf(dy, "came back.");
-	    logWarn(dy->string);
+	    logWarn("%s", dy->string);
 	    dyStringFree(&dy);
 	    while ((jobIdString = nextWord(&line)) != NULL)
 	        {
 		jobId = atoi(jobIdString);
                 if ((i = slIntFind(mach->deadJobIds, jobId)))
 		    {
 		    struct job *job;
 		    warn("hub: Looks like %s is still keeping track of %d", name, jobId);
 		    if ((job = findWaitingJob(jobId)) != NULL)
 			{
 			warn("hub: Luckily rerun of job %d has not yet happened.", 
                              jobId);
 			job->machine = mach;
 			dlAddTail(mach->jobs, job->jobNode);
 			job->lastChecked = mach->lastChecked = job->lastClockIn = now;