diff options
author | Max Kellermann <max@duempel.org> | 2011-12-13 21:40:44 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2011-12-13 21:58:13 +0100 |
commit | c0070b2f13b324cb56ef9ccfdb436c85245dd6a6 (patch) | |
tree | 856d05b0a202fdb2ac8b5b43b868153d4c373276 /src | |
parent | cfedc6e9b4b309a6e7e48c0ebc9807cf25a4a4b5 (diff) | |
download | mpd-c0070b2f13b324cb56ef9ccfdb436c85245dd6a6.tar.gz mpd-c0070b2f13b324cb56ef9ccfdb436c85245dd6a6.tar.xz mpd-c0070b2f13b324cb56ef9ccfdb436c85245dd6a6.zip |
output/openal: make attribute "filled" unsigned
Diffstat (limited to '')
-rw-r--r-- | src/output/openal_output_plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output/openal_output_plugin.c b/src/output/openal_output_plugin.c index d5689bbad..016189ae3 100644 --- a/src/output/openal_output_plugin.c +++ b/src/output/openal_output_plugin.c @@ -46,7 +46,7 @@ struct openal_data { ALCcontext *context; struct timer *timer; ALuint buffers[NUM_BUFFERS]; - int filled; + unsigned filled; ALuint source; ALenum format; ALuint frequency; |