Fixed fprintf comipler warnings
git-svn-id: svn://opensvn.adaptivecomputing.com/maui/trunk@131 3f5042e3-fb1d-0410-be18-d6ca2573e517
This commit is contained in:
parent
0921a1ef39
commit
2267640e03
@ -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);
|
||||
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user