projects
/
xonotic
/
gmqcc.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8f34e9f
)
Fix teh paren!
author
Dale Weiler <killfieldengine@gmail.com>
Fri, 28 Dec 2012 15:19:19 +0000
(15:19 +0000)
committer
Dale Weiler <killfieldengine@gmail.com>
Fri, 28 Dec 2012 15:19:19 +0000
(15:19 +0000)
file.c
patch
|
blob
|
history
diff --git
a/file.c
b/file.c
index 51ebc955b53855da07fd653c626bfced13f81711..b551b149b6fba4dc0c14e2c6b2357d158f169f49 100644
(file)
--- a/
file.c
+++ b/
file.c
@@
-78,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) {