aboutsummaryrefslogtreecommitdiffstats
path: root/src/outputBuffer.c
diff options
context:
space:
mode:
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 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;
}