From: Christophe Jaillet Date: Mon, 21 Dec 2015 12:17:32 +0000 (+0000) Subject: Use 'unsigned int' instead of 'int' for bitfields X-Git-Tag: 2.5.0-alpha~2513 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6bbb79daaad7c2b13f8ddd13d79b7bc56f3eb87f;p=apache Use 'unsigned int' instead of 'int' for bitfields git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1721139 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/http_core.h b/include/http_core.h index 92bf161ce2..3ecd5f119f 100644 --- a/include/http_core.h +++ b/include/http_core.h @@ -725,7 +725,7 @@ typedef struct { apr_array_header_t *protocols; int protocols_honor_order; int async_filter; - int async_filter_set:1; + unsigned int async_filter_set:1; } core_server_config; /* for AddOutputFiltersByType in core.c */