summaryrefslogtreecommitdiff
path: root/fileio.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-06-27 21:25:53 +0000
committertron <tron@openttd.org>2006-06-27 21:25:53 +0000
commit772fbda3e37488c2bf7beb96d35b2cbe001d9eda (patch)
tree1bfdb9c99b43fdc3b07ac13cbed4259a06d34f6f /fileio.c
parent7fa72c5e2f224243a8c89096f0b07259e05e44cf (diff)
downloadopenttd-772fbda3e37488c2bf7beb96d35b2cbe001d9eda.tar.xz
(svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
Diffstat (limited to 'fileio.c')
-rw-r--r--fileio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fileio.c b/fileio.c
index 06e474a15..338c7f50a 100644
--- a/fileio.c
+++ b/fileio.c
@@ -133,9 +133,9 @@ bool FiosCheckFileExists(const char *filename)
}
#endif
- if (f == NULL)
+ if (f == NULL) {
return false;
- else {
+ } else {
fclose(f);
return true;
}