(svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular

This commit is contained in:
tron
2006-06-27 21:25:53 +00:00
parent c126ce110e
commit 2b27073156
77 changed files with 1051 additions and 1037 deletions

View File

@@ -133,9 +133,9 @@ bool FiosCheckFileExists(const char *filename)
}
#endif
if (f == NULL)
if (f == NULL) {
return false;
else {
} else {
fclose(f);
return true;
}