From ddffcce67810fbde5508a353f85760da7a1b4a95 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 18 Nov 2012 20:46:12 +0100 Subject: stream, demux: replace off_t with int64_t On reasonable systems, these types were the same anyway. Even on unreasonable systems (seriously, which?), this may reduce potential breakage. --- stream/stream_lavf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stream/stream_lavf.c') diff --git a/stream/stream_lavf.c b/stream/stream_lavf.c index 9619a06b1a..6e5f70ae83 100644 --- a/stream/stream_lavf.c +++ b/stream/stream_lavf.c @@ -43,7 +43,7 @@ static int write_buffer(stream_t *s, char *buffer, int len) return len; } -static int seek(stream_t *s, off_t newpos) +static int seek(stream_t *s, int64_t newpos) { AVIOContext *avio = s->priv; s->pos = newpos; -- cgit v1.2.3