diff options
Diffstat (limited to 'contrib/minizip/unzip.h')
-rw-r--r-- | contrib/minizip/unzip.h | 12 |
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 */ |
84 | typedef struct tm_unz_s | 84 | typedef 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 |