diff options
-rw-r--r-- | contrib/minizip/ioapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/minizip/ioapi.c b/contrib/minizip/ioapi.c index baa6776..814a6fd 100644 --- a/contrib/minizip/ioapi.c +++ b/contrib/minizip/ioapi.c | |||
@@ -208,7 +208,7 @@ static long ZCALLBACK fseek64_file_func (voidpf opaque, voidpf stream, ZPOS64_T | |||
208 | } | 208 | } |
209 | ret = 0; | 209 | ret = 0; |
210 | 210 | ||
211 | if(FSEEKO_FUNC((FILE *)stream, (long)offset, fseek_origin) != 0) | 211 | if(FSEEKO_FUNC((FILE *)stream, (z_off_t)offset, fseek_origin) != 0) |
212 | ret = -1; | 212 | ret = -1; |
213 | 213 | ||
214 | return ret; | 214 | return ret; |