diff options
author | Chris Robinson <[email protected]> | 2011-08-19 23:05:54 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-08-19 23:05:54 -0700 |
commit | ba4456d24aa013118e70fa1158def7ad18e8d66e (patch) | |
tree | 98333f4266539cb38aedea07b6eac4bb1f6e6566 /Alc | |
parent | 00718ca03fcd0225a2679839b9abd5d643f8b67a (diff) |
Use the proper variable type
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/ALc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -712,7 +712,7 @@ static pthread_once_t once_control = PTHREAD_ONCE_INIT; #define DO_INITCONFIG() pthread_once(&once_control, alc_initconfig) #endif -static void ProbeList(ALCchar **list, size_t *listsize, int type) +static void ProbeList(ALCchar **list, size_t *listsize, enum DevProbe type) { free(*list); *list = NULL; |