diff options
author | Chris Robinson <[email protected]> | 2014-07-19 20:46:41 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-07-19 20:46:41 -0700 |
commit | 8592b9371adf5d9ee28acc515e2b99e2f1388b17 (patch) | |
tree | 4b1509b081d609e9d3aa03cedea705dd3bd095d4 /Alc | |
parent | 0c31ccd45668c0d0295efd0cca548cb58c08ea95 (diff) |
Use the UNUSED macro instead of a void cast
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/midi/soft.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Alc/midi/soft.c b/Alc/midi/soft.c index 7102ff7a..6566b411 100644 --- a/Alc/midi/soft.c +++ b/Alc/midi/soft.c @@ -48,9 +48,8 @@ static void SSynth_update(SSynth* UNUSED(self), ALCdevice* UNUSED(device)) } -static void SSynth_mixSamples(SSynth* UNUSED(self), ALuint UNUSED(SamplesToDo), ALfloat (*restrict DryBuffer)[BUFFERSIZE]) +static void SSynth_mixSamples(SSynth* UNUSED(self), ALuint UNUSED(SamplesToDo), ALfloatBUFFERSIZE *restrict UNUSED(DryBuffer)) { - (void)DryBuffer; } |