Fixed fprintf comipler warnings

git-svn-id: svn://opensvn.adaptivecomputing.com/maui/trunk@131 3f5042e3-fb1d-0410-be18-d6ca2573e517
This commit is contained in:
bchristiansen 2010-02-23 17:48:41 +00:00
parent 0921a1ef39
commit 2267640e03
2 changed files with 4 additions and 4 deletions

View File

@ -7702,7 +7702,7 @@ int MJobWriteStats(
if (MJobToTString(J,DEFAULT_WORKLOAD_TRACE_VERSION,Buf,sizeof(Buf)) == SUCCESS)
{
fprintf(MSched.statfp,Buf);
fprintf(MSched.statfp,"%s",Buf);
fflush(MSched.statfp);

View File

@ -1501,7 +1501,7 @@ int Mode)
}
else
{
fprintf(stdout,
fprintf(stdout,"%s",
(Mode & (1 << mMatrix)) ? MNull : Null);
}
}
@ -1517,7 +1517,7 @@ int Mode)
}
else
{
fprintf(stdout,
fprintf(stdout,"%s",
(Mode & (1 << mMatrix)) ? MNull : Null);
fprintf(stdout,"\n");
@ -1541,7 +1541,7 @@ int Mode)
}
else
{
fprintf(stdout,
fprintf(stdout,"%s",
(Mode & (1 << mMatrix)) ? MNull : Null);
}
}