aboutsummaryrefslogtreecommitdiff
path: root/src/pcm_volume.c
diff options
context:
space:
mode:
authorViliam Mateicka <viliam.mateicka@gmail.com>2009-03-02 18:54:50 +0100
committerMax Kellermann <max@duempel.org>2009-03-02 19:00:21 +0100
commit60a5b5562b6608ffe2e1ee5b9e83365cdcd83c06 (patch)
tree4eef969aa593d8d23b65dd6edfb9ef341801a377 /src/pcm_volume.c
parent57d836da495cf419326d4f89f294afc270bdc9a6 (diff)
fixing unused parameter warning
Diffstat (limited to 'src/pcm_volume.c')
-rw-r--r--src/pcm_volume.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pcm_volume.c b/src/pcm_volume.c
index 49b0f9fb..4f1ecf49 100644
--- a/src/pcm_volume.c
+++ b/src/pcm_volume.c
@@ -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;