diff options
| author | Rémi Verschelde <remi@verschelde.fr> | 2022-03-31 16:17:35 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-31 16:17:35 +0200 |
| commit | fda87d4a89f83c587dd31aa37e1d662d367b1469 (patch) | |
| tree | e51bfa32dad01cb951dd12ce9e1bb0c6d72baa63 /thirdparty/minizip/unzip.h | |
| parent | b0df742cbe1c81feeb3b5e4a95cecbfabb2fe8f8 (diff) | |
| parent | 420d0d50bcdc47c793157c2f1e143136eafa6500 (diff) | |
Merge pull request #59735 from akien-mga/zlib-1.2.12
Diffstat (limited to 'thirdparty/minizip/unzip.h')
| -rw-r--r-- | thirdparty/minizip/unzip.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/thirdparty/minizip/unzip.h b/thirdparty/minizip/unzip.h index bab1cb939f..71a7d89692 100644 --- a/thirdparty/minizip/unzip.h +++ b/thirdparty/minizip/unzip.h @@ -83,12 +83,12 @@ typedef voidp unzFile; /* tm_unz contain date/time info */ typedef struct tm_unz_s { - uInt tm_sec; /* seconds after the minute - [0,59] */ - uInt tm_min; /* minutes after the hour - [0,59] */ - uInt tm_hour; /* hours since midnight - [0,23] */ - uInt tm_mday; /* day of the month - [1,31] */ - uInt tm_mon; /* months since January - [0,11] */ - uInt tm_year; /* years - [1980..2044] */ + int tm_sec; /* seconds after the minute - [0,59] */ + int tm_min; /* minutes after the hour - [0,59] */ + int tm_hour; /* hours since midnight - [0,23] */ + int tm_mday; /* day of the month - [1,31] */ + int tm_mon; /* months since January - [0,11] */ + int tm_year; /* years - [1980..2044] */ } tm_unz; /* unz_global_info structure contain global data about the ZIPfile |