mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-03-23 11:11:22 +00:00
Fix teh paren!
This commit is contained in:
parent
8f34e9fa37
commit
3f88b5fa14
1 changed files with 1 additions and 1 deletions
2
file.c
2
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) {
|
||||
|
|
Loading…
Reference in a new issue