diff options
Diffstat (limited to 'Alc/alcEcho.c')
-rw-r--r-- | Alc/alcEcho.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/alcEcho.c b/Alc/alcEcho.c index e38e1457..4270c863 100644 --- a/Alc/alcEcho.c +++ b/Alc/alcEcho.c @@ -57,7 +57,7 @@ typedef struct ALechoState { FILTER iirFilter; } ALechoState; -static ALvoid ALechoState_Destroy(ALechoState *state) +static ALvoid ALechoState_Destruct(ALechoState *state) { free(state->SampleBuffer); state->SampleBuffer = NULL; @@ -208,7 +208,7 @@ ALeffectState *ALechoStateFactory_create(void) static ALvoid ALechoStateFactory_destroy(ALeffectState *effect) { ALechoState *state = STATIC_UPCAST(ALechoState, ALeffectState, effect); - ALechoState_Destroy(state); + ALechoState_Destruct(state); free(state); } |