diff options
author | Max Kellermann <max@duempel.org> | 2008-04-12 04:06:57 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-04-12 04:06:57 +0000 |
commit | c069b89d86f9cc1f45b8917fbad77e5a860e938f (patch) | |
tree | 37833274b0c552cc39fe293b0a1e5f89c90bc29a /src/outputBuffer.c | |
parent | b60789dd8cc421151fd2d0bbd44c0635c1dabb67 (diff) | |
download | mpd-c069b89d86f9cc1f45b8917fbad77e5a860e938f.tar.gz mpd-c069b89d86f9cc1f45b8917fbad77e5a860e938f.tar.xz mpd-c069b89d86f9cc1f45b8917fbad77e5a860e938f.zip |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/outputBuffer.c b/src/outputBuffer.c index 15b7b26d9..dab233668 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; } |