]> de.git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - file.c
lex->flags.preprocessing causes the lexer to parse the unary number if it is one
[xonotic/gmqcc.git] / file.c
diff --git a/file.c b/file.c
index 2f81be63c776adf9a30f6c8bd6ac33e23acb59f7..fd7b84e67a67911f171866e25de4418373677145 100644 (file)
--- a/file.c
+++ b/file.c
@@ -1,6 +1,5 @@
 /*
- * Copyright (C) 2012
- *     Wolfgang Bumiller
+ * Copyright (C) 2012, 2013
  *     Dale Weiler
  *
  * Permission is hereby granted, free of charge, to any person obtaining a copy of
@@ -79,7 +78,7 @@
         FILE *handle = NULL;
         file_init();
 
-        return ((fopen_s(&handle, filename, mode) != 0) ? NULL : handle;
+        return (fopen_s(&handle, filename, mode) != 0) ? NULL : handle;
     }
 
     size_t file_read(void *buffer, size_t size, size_t count, FILE *fp) {