summaryrefslogtreecommitdiff
path: root/fileio.c
diff options
context:
space:
mode:
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;
}