From 39a5d0cb9494c771c870c0952c25d64e87191667 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Wed, 25 Jul 2018 13:15:47 -0700 Subject: Mark a couple parameters as unused --- Alc/effects/autowah.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Alc/effects/autowah.c b/Alc/effects/autowah.c index 7cc2539e..b58970ab 100644 --- a/Alc/effects/autowah.c +++ b/Alc/effects/autowah.c @@ -237,7 +237,7 @@ void ALautowah_setParamiv(ALeffect *UNUSED(effect), ALCcontext *context, ALenum alSetError(context, AL_INVALID_ENUM, "Invalid autowah integer vector property 0x%04x", param); } -void ALautowah_getParami(const ALeffect *effect, ALCcontext *context, ALenum param, ALint *val) +void ALautowah_getParami(const ALeffect *UNUSED(effect), ALCcontext *context, ALenum param, ALint *UNUSED(val)) { alSetError(context, AL_INVALID_ENUM, "Invalid autowah integer property 0x%04x", param); } -- cgit v1.2.3