diff options
Diffstat (limited to 'Alc/effects/chorus.c')
-rw-r--r-- | Alc/effects/chorus.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Alc/effects/chorus.c b/Alc/effects/chorus.c index 8fc82a7f..9e889847 100644 --- a/Alc/effects/chorus.c +++ b/Alc/effects/chorus.c @@ -244,10 +244,9 @@ static void ALchorusState_Delete(ALchorusState *state) DEFINE_ALEFFECTSTATE_VTABLE(ALchorusState); -static ALeffectState *ALchorusStateFactory_create(ALchorusStateFactory *factory) +static ALeffectState *ALchorusStateFactory_create(ALchorusStateFactory *UNUSED(factory)) { ALchorusState *state; - (void)factory; state = malloc(sizeof(*state)); if(!state) return NULL; |