Fix compile of tile2x11

I was too zealous changing fprintf to the Fprintf macro, which
ignores the return value.
This commit is contained in:
Pasi Kallinen
2017-11-02 23:41:55 +02:00
parent f3814417e9
commit 647ea55b1a
+1 -1
View File
@@ -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 */