From d37044647f83f53a1cb711ea4655b944ff4af0e5 Mon Sep 17 00:00:00 2001 From: Jean First Date: Thu, 27 Sep 2012 01:08:51 +0200 Subject: [PATCH] file: set the return value type for lseek to off_t fixes a bug introduced with 4ed5ac50d3e4f921003ecf60985f78337400f354 Signed-off-by: Jean First Signed-off-by: Michael Niedermayer --- libavformat/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/file.c b/libavformat/file.c index defe3165e2..8c41a3c372 100644 --- a/libavformat/file.c +++ b/libavformat/file.c @@ -135,7 +135,7 @@ static int file_open(URLContext *h, const char *filename, int flags) static int64_t file_seek(URLContext *h, int64_t pos, int whence) { FileContext *c = h->priv_data; - int ret; + off_t ret; if (whence == AVSEEK_SIZE) { struct stat st;