From: Fredrik Tolf Date: Wed, 5 Aug 2015 23:42:26 +0000 (+0200) Subject: lib: Fixed fopencookie seek function type. X-Git-Url: http://www.dolda2000.com/gitweb/?p=ashd.git;a=commitdiff_plain;h=66868b1be6d545ec534cc970bb35b10867d76c06 lib: Fixed fopencookie seek function type. --- diff --git a/lib/utils.c b/lib/utils.c index ad28086..b37430d 100644 --- a/lib/utils.c +++ b/lib/utils.c @@ -513,7 +513,7 @@ static ssize_t wrapwrite(void *pdata, const char *buf, size_t len) return(off); } -static int wrapseek(void *pdata, off_t *pos, int whence) +static int wrapseek(void *pdata, off64_t *pos, int whence) { struct stdif *nf = pdata; off_t ret;