Fix compile of tile2x11
I was too zealous changing fprintf to the Fprintf macro, which ignores the return value.
This commit is contained in:
+1
-1
@@ -157,7 +157,7 @@ FILE *fp;
|
|||||||
Fprintf(fp, "\",\n");
|
Fprintf(fp, "\",\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
return Fprintf(fp, "};\n") >= 0;
|
return fprintf(fp, "};\n") >= 0;
|
||||||
}
|
}
|
||||||
#endif /* USE_XPM */
|
#endif /* USE_XPM */
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user