summaryrefslogtreecommitdiffstats
path: root/Alc/alcChorus.c
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/alcChorus.c')
-rw-r--r--Alc/alcChorus.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/alcChorus.c b/Alc/alcChorus.c
index 018caac5..cf414bbd 100644
--- a/Alc/alcChorus.c
+++ b/Alc/alcChorus.c
@@ -57,7 +57,7 @@ typedef struct ALchorusState {
ALfloat feedback;
} ALchorusState;
-static ALvoid ALchorusState_Destroy(ALchorusState *state)
+static ALvoid ALchorusState_Destruct(ALchorusState *state)
{
free(state->SampleBufferLeft);
state->SampleBufferLeft = NULL;
@@ -270,7 +270,7 @@ static ALeffectState *ALchorusStateFactory_create(void)
static ALvoid ALchorusStateFactory_destroy(ALeffectState *effect)
{
ALchorusState *state = STATIC_UPCAST(ALchorusState, ALeffectState, effect);
- ALchorusState_Destroy(state);
+ ALchorusState_Destruct(state);
free(state);
}