aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 869bafb8..ac169eac 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -1406,7 +1406,7 @@ static ALCvoid FreeContext(ALCcontext *context)
free(context);
}
-static void ALCcontext_Deref(ALCcontext *context)
+static void ALCcontext_DecRef(ALCcontext *context)
{
if(DecrementRef(&context->ref) == 0)
FreeContext(context);
@@ -2127,7 +2127,7 @@ ALC_API ALCvoid ALC_APIENTRY alcDestroyContext(ALCcontext *context)
}
UnlockLists();
- ALCcontext_Deref(context);
+ ALCcontext_DecRef(context);
}