diff options
author | Chris Robinson <[email protected]> | 2014-04-18 02:25:07 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-04-18 02:25:07 -0700 |
commit | b979a8005fb208edb2ca2905eea8b887613e2532 (patch) | |
tree | cd6fa8feed03690a57b3cc524055e09c6938aa84 | |
parent | 1353cb0d883f5b0f3c6f7170f3637425d0a6fc5c (diff) |
Alter the al_fopen macro to not directly take parameters
-rw-r--r-- | Alc/compat.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 <pthread.h> -#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 |