diff options
author | Maxim Dounin <mdounin@mdounin.ru> | 2013-09-04 20:48:22 +0400 |
---|---|---|
committer | Maxim Dounin <mdounin@mdounin.ru> | 2013-09-04 20:48:22 +0400 |
commit | 5b3785232303f9c44543b20e1499c756462c53e6 (patch) | |
tree | 0b99ae6210d94c709a3ca10b28f5f5c1e55015cb /src/core/ngx_string.c | |
parent | 42910391cd9380ea0632d75f745f0332f9350c5d (diff) | |
download | nginx-5b3785232303f9c44543b20e1499c756462c53e6.tar.gz nginx-5b3785232303f9c44543b20e1499c756462c53e6.zip |
Win32: Open Watcom C compatibility fixes.
Precompiled headers are disabled as they lead to internal compiler errors
with long configure lines. Couple of false positive warnings silenced.
Various win32 typedefs are adjusted to work with Open Watcom C 1.9 headers.
With this patch, it's now again possible to compile nginx using owc386,
with options we normally compile on win32 minus ipv6 and ssl.
Diffstat (limited to 'src/core/ngx_string.c')
-rw-r--r-- | src/core/ngx_string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_string.c b/src/core/ngx_string.c index 3b392f7b2..d3ff36855 100644 --- a/src/core/ngx_string.c +++ b/src/core/ngx_string.c @@ -486,7 +486,7 @@ ngx_sprintf_num(u_char *buf, u_char *last, uint64_t ui64, u_char zero, if (hexadecimal == 0) { - if (ui64 <= NGX_MAX_UINT32_VALUE) { + if (ui64 <= (uint64_t) NGX_MAX_UINT32_VALUE) { /* * To divide 64-bit numbers and to find remainders |