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_cdda.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stream/stream_cdda.c') diff --git a/stream/stream_cdda.c b/stream/stream_cdda.c index 31e29a343f..c8a624c86a 100644 --- a/stream/stream_cdda.c +++ b/stream/stream_cdda.c @@ -196,7 +196,7 @@ static int fill_buffer(stream_t *s, char *buffer, int max_len) return CDIO_CD_FRAMESIZE_RAW; } -static int seek(stream_t *s, off_t newpos) +static int seek(stream_t *s, int64_t newpos) { cdda_priv *p = (cdda_priv *)s->priv; int sec; -- cgit v1.2.3