summaryrefslogtreecommitdiffstats
path: root/stream/stream_lavf.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/stream_lavf.c')
-rw-r--r--stream/stream_lavf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/stream_lavf.c b/stream/stream_lavf.c
index d21e35e6a3..9619a06b1a 100644
--- a/stream/stream_lavf.c
+++ b/stream/stream_lavf.c
@@ -63,7 +63,7 @@ static int control(stream_t *s, int cmd, void *arg)
case STREAM_CTRL_GET_SIZE:
size = avio_size(avio);
if(size >= 0) {
- *(off_t *)arg = size;
+ *(uint64_t *)arg = size;
return 1;
}
break;