]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Use 'unsigned int' in bitfield
authorChristophe Jaillet <jailletc36@apache.org>
Mon, 13 Apr 2015 05:59:26 +0000 (05:59 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Mon, 13 Apr 2015 05:59:26 +0000 (05:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1673113 13f79535-47bb-0310-9956-ffa450edef68

modules/loggers/mod_logio.c

index 77071f405c247f084757506cb4c43c4f35ba7ef7..ab922e30c62d5d595983990d9d4015c371de07bc 100644 (file)
@@ -49,11 +49,11 @@ typedef struct logio_config_t {
     apr_off_t bytes_last_request;
     apr_time_t ttfb;
     request_rec *r;         /* Use for TTFB only */
-    int first_byte_seen:1;
+    unsigned int first_byte_seen:1;
 } logio_config_t;
 
 typedef struct logio_dirconf_t {
-    int track_ttfb:1;
+    unsigned int track_ttfb:1;
 } logio_dirconf_t;
 
 /*