diff options
| author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:27:26 -0700 |
|---|---|---|
| committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:27:26 -0700 |
| commit | 7751bd4c715ea8478113e34b49b5a794a4642e8e (patch) | |
| tree | 537ba82b3780f933c2f17028febd6fe3a2332190 /contrib/minizip/ioapi.c | |
| parent | e0ff940e1adb68d3575705ebf1546d9f07ad3b4a (diff) | |
| download | zlib-7751bd4c715ea8478113e34b49b5a794a4642e8e.tar.gz zlib-7751bd4c715ea8478113e34b49b5a794a4642e8e.tar.bz2 zlib-7751bd4c715ea8478113e34b49b5a794a4642e8e.zip | |
zlib 1.2.3.9v1.2.3.9
Diffstat (limited to 'contrib/minizip/ioapi.c')
| -rw-r--r-- | contrib/minizip/ioapi.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/contrib/minizip/ioapi.c b/contrib/minizip/ioapi.c index a5f1e0b..49958f6 100644 --- a/contrib/minizip/ioapi.c +++ b/contrib/minizip/ioapi.c | |||
| @@ -1,17 +1,17 @@ | |||
| 1 | /* ioapi.h -- IO base function header for compress/uncompress .zip | 1 | /* ioapi.h -- IO base function header for compress/uncompress .zip |
| 2 | part of the MiniZip project - ( http://www.winimage.com/zLibDll/minizip.html ) | 2 | part of the MiniZip project - ( http://www.winimage.com/zLibDll/minizip.html ) |
| 3 | 3 | ||
| 4 | Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html ) | 4 | Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html ) |
| 5 | 5 | ||
| 6 | Modifications for Zip64 support | 6 | Modifications for Zip64 support |
| 7 | Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com ) | 7 | Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com ) |
| 8 | 8 | ||
| 9 | For more info read MiniZip_info.txt | 9 | For more info read MiniZip_info.txt |
| 10 | 10 | ||
| 11 | */ | 11 | */ |
| 12 | 12 | ||
| 13 | #if (defined(_WIN32)) | 13 | #if (defined(_WIN32)) |
| 14 | #define _CRT_SECURE_NO_WARNINGS | 14 | #define _CRT_SECURE_NO_WARNINGS |
| 15 | #endif | 15 | #endif |
| 16 | 16 | ||
| 17 | #include "ioapi.h" | 17 | #include "ioapi.h" |
| @@ -189,7 +189,7 @@ static long ZCALLBACK fseek64_file_func (voidpf opaque, voidpf stream, ZPOS64_T | |||
| 189 | ret = 0; | 189 | ret = 0; |
| 190 | 190 | ||
| 191 | if(fseeko64((FILE *)stream, offset, fseek_origin) != 0) | 191 | if(fseeko64((FILE *)stream, offset, fseek_origin) != 0) |
| 192 | ret = -1; | 192 | ret = -1; |
| 193 | 193 | ||
| 194 | return ret; | 194 | return ret; |
| 195 | } | 195 | } |
