aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-07-25 13:15:47 -0700
committerChris Robinson <[email protected]>2018-07-25 13:15:47 -0700
commit39a5d0cb9494c771c870c0952c25d64e87191667 (patch)
treee5c6cb067a0d2ae16cc4dcbf85ca0df5cb6b12ae
parent7d68eeac882c62c68ce835c842ce5805d14b3b30 (diff)
Mark a couple parameters as unused
-rw-r--r--Alc/effects/autowah.c2
1 files changed, 1 insertions, 1 deletions
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);
}