From b979a8005fb208edb2ca2905eea8b887613e2532 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Fri, 18 Apr 2014 02:25:07 -0700 Subject: [PATCH] Alter the al_fopen macro to not directly take parameters --- Alc/compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Alc/compat.h b/Alc/compat.h index 2765ef18..1e94963f 100644 --- a/Alc/compat.h +++ b/Alc/compat.h @@ -19,7 +19,7 @@ FILE *al_fopen(const char *fname, const char *mode); #include -#define al_fopen(_n, _m) fopen((_n), (_m)) +#define al_fopen fopen #if defined(HAVE_DLFCN_H) && !defined(IN_IDE_PARSER) #define HAVE_DYNLOAD 1 -- 2.11.4.GIT