1
0
mirror of https://github.com/apache/httpd.git synced 2026-01-06 09:01:14 +03:00

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
This commit is contained in:
Christophe Jaillet
2015-12-21 12:17:32 +00:00
parent 971ef2b605
commit 6bbb79daaa

View File

@@ -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 */