lib: Fixed fopencookie seek function type.
authorFredrik Tolf <fredrik@dolda2000.com>
Wed, 5 Aug 2015 23:42:26 +0000 (01:42 +0200)
committerFredrik Tolf <fredrik@dolda2000.com>
Wed, 5 Aug 2015 23:42:26 +0000 (01:42 +0200)
lib/utils.c

index ad28086..b37430d 100644 (file)
@@ -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;