diff options
author | Max Kellermann <max@duempel.org> | 2011-10-20 02:11:40 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2011-10-20 02:24:25 +0200 |
commit | b7d5652bf63c2885588ad61b5f44b164627bb5a6 (patch) | |
tree | 58da213be5460d780284988c5ef10beacbd0c277 /src | |
parent | 725e48fce4e4ad08a2a9aa0a64c3e79df5636108 (diff) | |
download | mpd-b7d5652bf63c2885588ad61b5f44b164627bb5a6.tar.gz mpd-b7d5652bf63c2885588ad61b5f44b164627bb5a6.tar.xz mpd-b7d5652bf63c2885588ad61b5f44b164627bb5a6.zip |
pcm_volume: "length" is a "size_t", not "int"
Diffstat (limited to 'src')
-rw-r--r-- | src/pcm_volume.c | 2 | ||||
-rw-r--r-- | src/pcm_volume.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pcm_volume.c b/src/pcm_volume.c index 7d9d2fe42..dd5f6f90c 100644 --- a/src/pcm_volume.c +++ b/src/pcm_volume.c @@ -138,7 +138,7 @@ pcm_volume_change_32(int32_t *buffer, unsigned num_samples, int volume) } bool -pcm_volume(void *buffer, int length, +pcm_volume(void *buffer, size_t length, enum sample_format format, int volume) { diff --git a/src/pcm_volume.h b/src/pcm_volume.h index 3fd722e77..741c4db40 100644 --- a/src/pcm_volume.h +++ b/src/pcm_volume.h @@ -68,7 +68,7 @@ pcm_volume_dither(void) * @return true on success, false if the audio format is not supported */ bool -pcm_volume(void *buffer, int length, +pcm_volume(void *buffer, size_t length, enum sample_format format, int volume); |