Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/ngx_config.h')
-rw-r--r--src/core/ngx_config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/ngx_config.h b/src/core/ngx_config.h
index 675d427d4..4045e7a82 100644
--- a/src/core/ngx_config.h
+++ b/src/core/ngx_config.h
@@ -126,9 +126,9 @@ typedef long ngx_flag_t;
#if ((__GNU__ == 2) && (__GNUC_MINOR__ < 8))
-#define NGX_MAX_UINT32_VALUE 0xffffffffLL
+#define NGX_MAX_UINT32_VALUE (uint32_t) 0xffffffffLL
#else
-#define NGX_MAX_UINT32_VALUE 0xffffffff
+#define NGX_MAX_UINT32_VALUE (uint32_t) 0xffffffff
#endif