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