]> granicus.if.org Git - apache/commitdiff
Use 'unsigned int' instead of 'int' for bitfields
authorChristophe Jaillet <jailletc36@apache.org>
Mon, 21 Dec 2015 12:13:54 +0000 (12:13 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Mon, 21 Dec 2015 12:13:54 +0000 (12:13 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1721138 13f79535-47bb-0310-9956-ffa450edef68

modules/http2/h2_worker.h

index 249cae0e98e400c7e0ef647c18cd5a3f40505c8b..6bf9bf31c0b7836709bb815db1211544b89c8abd 100644 (file)
@@ -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;
 };