summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--stream/cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/cache.c b/stream/cache.c
index 12c66a32bb..ea51fd2421 100644
--- a/stream/cache.c
+++ b/stream/cache.c
@@ -241,7 +241,7 @@ static bool cache_fill(struct priv *s)
int64_t space = s->buffer_size - (newb + back);
// offset into the buffer that maps to max_filepos
- int pos = s->max_filepos - s->offset;
+ int64_t pos = s->max_filepos - s->offset;
if (pos >= s->buffer_size)
pos -= s->buffer_size; // wrap-around