file: set the return value type for lseek to off_t

fixes a bug introduced with 4ed5ac50d3

Signed-off-by: Jean First <jeanfirst@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Jean First 2012-09-27 01:08:51 +02:00 committed by Michael Niedermayer
parent c76ffdc251
commit d37044647f

View File

@ -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;