diff options
author | Viliam Mateicka <viliam.mateicka@gmail.com> | 2009-03-02 18:54:50 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-03-02 19:00:21 +0100 |
commit | 60a5b5562b6608ffe2e1ee5b9e83365cdcd83c06 (patch) | |
tree | 4eef969aa593d8d23b65dd6edfb9ef341801a377 /src | |
parent | 57d836da495cf419326d4f89f294afc270bdc9a6 (diff) | |
download | mpd-60a5b5562b6608ffe2e1ee5b9e83365cdcd83c06.tar.gz mpd-60a5b5562b6608ffe2e1ee5b9e83365cdcd83c06.tar.xz mpd-60a5b5562b6608ffe2e1ee5b9e83365cdcd83c06.zip |
fixing unused parameter warning
Diffstat (limited to 'src')
-rw-r--r-- | src/pcm_volume.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pcm_volume.c b/src/pcm_volume.c index 49b0f9fb7..4f1ecf49c 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; |