From 6bbb79daaad7c2b13f8ddd13d79b7bc56f3eb87f Mon Sep 17 00:00:00 2001 From: Christophe Jaillet Date: Mon, 21 Dec 2015 12:17:32 +0000 Subject: [PATCH] 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 --- include/http_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.49.0