diff options
Diffstat (limited to 'Alc/effects/echo.c')
-rw-r--r-- | Alc/effects/echo.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Alc/effects/echo.c b/Alc/effects/echo.c index 8e4205fc..b2b50836 100644 --- a/Alc/effects/echo.c +++ b/Alc/effects/echo.c @@ -183,9 +183,10 @@ static void ALechoState_Delete(ALechoState *state) DEFINE_ALEFFECTSTATE_VTABLE(ALechoState); -ALeffectState *ALechoStateFactory_create(void) +ALeffectState *ALechoStateFactory_create(ALechoStateFactory *factory) { ALechoState *state; + (void)factory; state = malloc(sizeof(*state)); if(!state) return NULL; |