aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-08-28 17:38:55 -0700
committerChris Robinson <[email protected]>2011-08-28 17:38:55 -0700
commitc567339718b10713a695bcb9cd171919779780a4 (patch)
treec65f8b2ded027eeac91dcd6c5838918d3d1e8fdb /Alc
parent5eceb593e9cfd57611e99217e2f9c346bb10305c (diff)
Rename ALCcontext_Deref to ALCcontext_DecRef
Diffstat (limited to 'Alc')
-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);
}