From: Roman Arutyunyan Date: Mon, 27 Oct 2025 17:16:49 +0000 (+0400) Subject: Fixed compilation warnings on Windows after c93a0c48af87. X-Git-Tag: release-1.29.3~2 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=f04e2b7f6e96a0587f091229272a5f060dbf32c0;p=nginx.git Fixed compilation warnings on Windows after c93a0c48af87. --- diff --git a/src/http/modules/ngx_http_headers_filter_module.c b/src/http/modules/ngx_http_headers_filter_module.c index 93177c748..f72044097 100644 --- a/src/http/modules/ngx_http_headers_filter_module.c +++ b/src/http/modules/ngx_http_headers_filter_module.c @@ -688,8 +688,8 @@ ngx_http_headers_create_conf(ngx_conf_t *cf) */ conf->expires = NGX_HTTP_EXPIRES_UNSET; - conf->headers_inherit = NGX_CONF_UNSET; - conf->trailers_inherit = NGX_CONF_UNSET; + conf->headers_inherit = NGX_CONF_UNSET_UINT; + conf->trailers_inherit = NGX_CONF_UNSET_UINT; return conf; }