aboutsummaryrefslogtreecommitdiff
path: root/src/outputBuffer.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-04-12 04:06:57 +0000
committerEric Wong <normalperson@yhbt.net>2008-04-12 04:06:57 +0000
commitc069b89d86f9cc1f45b8917fbad77e5a860e938f (patch)
tree37833274b0c552cc39fe293b0a1e5f89c90bc29a /src/outputBuffer.c
parentb60789dd8cc421151fd2d0bbd44c0635c1dabb67 (diff)
use unsigned integers in outputBuffer.c
The chunk index cannot be negative. git-svn-id: https://svn.musicpd.org/mpd/trunk@7231 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/outputBuffer.c')
-rw-r--r--src/outputBuffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/outputBuffer.c b/src/outputBuffer.c
index 15b7b26d..dab23366 100644
--- a/src/outputBuffer.c
+++ b/src/outputBuffer.c
@@ -118,7 +118,7 @@ int sendDataToOutputBuffer(OutputBuffer * cb, InputStream * inStream,
while (datalen) {
if (currentChunk != cb->end) {
- int next = cb->end + 1;
+ unsigned int next = cb->end + 1;
if (next >= buffered_chunks) {
next = 0;
}