Commit 60a5b556 authored by Viliam Mateicka's avatar Viliam Mateicka Committed by Max Kellermann

fixing unused parameter warning

parent 57d836da
......@@ -64,7 +64,7 @@ pcm_volume_change_16(int16_t *buffer, unsigned num_samples, int volume)
* multiplication result instead of emulating 64 bit multiplication.
*/
static inline int32_t
pcm_volume_sample_24(int32_t sample, int32_t volume, int32_t dither)
pcm_volume_sample_24(int32_t sample, int32_t volume, G_GNUC_UNUSED int32_t dither)
{
int32_t result;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment