From: Christophe Jaillet Date: Mon, 21 Dec 2015 12:13:54 +0000 (+0000) Subject: Use 'unsigned int' instead of 'int' for bitfields X-Git-Tag: 2.5.0-alpha~2514 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=971ef2b605882a759012f1069eb0365160143ff3;p=thirdparty%2Fapache%2Fhttpd.git Use 'unsigned int' instead of 'int' for bitfields git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1721138 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http2/h2_worker.h b/modules/http2/h2_worker.h index 249cae0e98e..6bf9bf31c0b 100644 --- a/modules/http2/h2_worker.h +++ b/modules/http2/h2_worker.h @@ -53,7 +53,7 @@ struct h2_worker { h2_worker_done_fn *worker_done; void *ctx; - int aborted : 1; + unsigned int aborted : 1; int pool_reuses; struct h2_task *task; };