From 66868b1be6d545ec534cc970bb35b10867d76c06 Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Thu, 6 Aug 2015 01:42:26 +0200 Subject: [PATCH] lib: Fixed fopencookie seek function type. --- lib/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.11.0