aboutsummaryrefslogtreecommitdiff
path: root/contrib/minizip/unzip.h
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2022-01-01 14:32:17 -0800
committerMark Adler <madler@alumni.caltech.edu>2022-01-01 14:55:47 -0800
commit2014a993addbc8f1b9785d97f55fd189792c2f78 (patch)
tree9a90875e93972077d00a434c69a045585dbcb9bc /contrib/minizip/unzip.h
parent58ca4e57ce7d76734d8b5afa03d205f694419b17 (diff)
downloadzlib-2014a993addbc8f1b9785d97f55fd189792c2f78.tar.gz
zlib-2014a993addbc8f1b9785d97f55fd189792c2f78.tar.bz2
zlib-2014a993addbc8f1b9785d97f55fd189792c2f78.zip
Clean up minizip to reduce warnings for testing.
Also fix Makefile test target and permit added compile options.
Diffstat (limited to 'contrib/minizip/unzip.h')
-rw-r--r--contrib/minizip/unzip.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/contrib/minizip/unzip.h b/contrib/minizip/unzip.h
index 2104e39..6f95e94 100644
--- a/contrib/minizip/unzip.h
+++ b/contrib/minizip/unzip.h
@@ -83,12 +83,12 @@ typedef voidp unzFile;
83/* tm_unz contain date/time info */ 83/* tm_unz contain date/time info */
84typedef struct tm_unz_s 84typedef struct tm_unz_s
85{ 85{
86 uInt tm_sec; /* seconds after the minute - [0,59] */ 86 int tm_sec; /* seconds after the minute - [0,59] */
87 uInt tm_min; /* minutes after the hour - [0,59] */ 87 int tm_min; /* minutes after the hour - [0,59] */
88 uInt tm_hour; /* hours since midnight - [0,23] */ 88 int tm_hour; /* hours since midnight - [0,23] */
89 uInt tm_mday; /* day of the month - [1,31] */ 89 int tm_mday; /* day of the month - [1,31] */
90 uInt tm_mon; /* months since January - [0,11] */ 90 int tm_mon; /* months since January - [0,11] */
91 uInt tm_year; /* years - [1980..2044] */ 91 int tm_year; /* years - [1980..2044] */
92} tm_unz; 92} tm_unz;
93 93
94/* unz_global_info structure contain global data about the ZIPfile 94/* unz_global_info structure contain global data about the ZIPfile