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_bluray.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'stream/stream_bluray.c') diff --git a/stream/stream_bluray.c b/stream/stream_bluray.c index 432216e20e..5f380458c7 100644 --- a/stream/stream_bluray.c +++ b/stream/stream_bluray.c @@ -88,10 +88,10 @@ static void bluray_stream_close(stream_t *s) free(b); } -static int bluray_stream_seek(stream_t *s, off_t pos) +static int bluray_stream_seek(stream_t *s, int64_t pos) { struct bluray_priv_s *b = s->priv; - off_t p; + int64_t p; p = bd_seek(b->bd, pos); if (p == -1) -- cgit v1.2.3