Fix compiler warning
This commit is contained in:
parent
7503d94d44
commit
7caf1b9d7e
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ void displayRoundNumber(int level, unsigned int i)
|
||||||
void displayText(int level, const char *text)
|
void displayText(int level, const char *text)
|
||||||
{
|
{
|
||||||
if ((intermediateValueFile) && (level <= displayLevel)) {
|
if ((intermediateValueFile) && (level <= displayLevel)) {
|
||||||
fprintf(intermediateValueFile, text);
|
fprintf(intermediateValueFile, "%s", text);
|
||||||
fprintf(intermediateValueFile, "\n");
|
fprintf(intermediateValueFile, "\n");
|
||||||
fprintf(intermediateValueFile, "\n");
|
fprintf(intermediateValueFile, "\n");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue