]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/lib/file.qh
take3: format 903 files
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / file.qh
index 5bc24f627185f5fd5c4bf87aaaf32a40f0908ff8..a231158848a81ece880a0f39f3eedc79692f7624 100644 (file)
@@ -4,7 +4,7 @@ ERASEABLE
 bool fexists(string f)
 {
        int fh = fopen(f, FILE_READ);
-       if (fh < 0) return false;
+       if (fh < 0) { return false; }
        fclose(fh);
        return true;
 }