diff options
author | Shauren <shauren.trinity@gmail.com> | 2022-04-11 15:02:19 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-04-11 15:04:27 +0200 |
commit | 54c34b7db9b6c9d1ac347ef71b3b39576c3a40a0 (patch) | |
tree | 726a469aa3d834cc99f4737d70bdc73d0faf9716 /dep/zlib/zutil.c | |
parent | 2d39f22697af7f644b556b07eec292697459655d (diff) |
Dep/zlib: Upgrade embedded zlib to 1.2.12
(cherry picked from commit 092ae504f53063cc676d7fce8bec361e3f11ca14)
Diffstat (limited to 'dep/zlib/zutil.c')
-rw-r--r-- | dep/zlib/zutil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dep/zlib/zutil.c b/dep/zlib/zutil.c index a76c6b0c7e5..dcab28a0d51 100644 --- a/dep/zlib/zutil.c +++ b/dep/zlib/zutil.c @@ -136,8 +136,8 @@ const char * ZEXPORT zError(err) return ERR_MSG(err); } -#if defined(_WIN32_WCE) - /* The Microsoft C Run-Time Library for Windows CE doesn't have +#if defined(_WIN32_WCE) && _WIN32_WCE < 0x800 + /* The older Microsoft C Run-Time Library for Windows CE doesn't have * errno. We define it as a global variable to simplify porting. * Its value is always 0 and should not be used. */ |