[FFmpeg-devel] [PATCH] file: set the return value type for lseek to off_t
Jean First
jeanfirst at gmail.com
Thu Sep 27 01:08:51 CEST 2012
fixes a bug introduced with 4ed5ac50d3e4f921003ecf60985f78337400f354
Signed-off-by: Jean First <jeanfirst at gmail.com>
---
libavformat/file.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/file.c b/libavformat/file.c
index defe316..8c41a3c 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;
--
1.7.9.6 (Apple Git-31.1)
More information about the ffmpeg-devel
mailing list