aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-08-19 23:05:54 -0700
committerChris Robinson <[email protected]>2011-08-19 23:05:54 -0700
commitba4456d24aa013118e70fa1158def7ad18e8d66e (patch)
tree98333f4266539cb38aedea07b6eac4bb1f6e6566 /Alc
parent00718ca03fcd0225a2679839b9abd5d643f8b67a (diff)
Use the proper variable type
Diffstat (limited to 'Alc')
-rw-r--r--Alc/ALc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 6f7b6acd..7322d924 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -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;