From: Dale Weiler Date: Fri, 28 Dec 2012 15:19:19 +0000 (+0000) Subject: Fix teh paren! X-Git-Tag: before-library~447 X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=commitdiff_plain;h=3f88b5fa14c4771ffd7bd34dfffabe1122288d62 Fix teh paren! --- diff --git a/file.c b/file.c index 51ebc95..b551b14 100644 --- 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) {