# HG changeset patch # User Igor Sysoev # Date 1251032321 0 # Node ID d2b183c398780ffb32dc1a4673409f286695140f # Parent f9d97311c652d59cc643b0d8e802d584bc993c51 the flags should be bit-wide only diff -r f9d97311c652 -r d2b183c39878 src/core/ngx_buf.h --- a/src/core/ngx_buf.h Fri Aug 21 09:06:35 2009 +0000 +++ b/src/core/ngx_buf.h Sun Aug 23 12:58:41 2009 +0000 @@ -75,13 +75,13 @@ ngx_chain_t *free; ngx_chain_t *busy; - unsigned sendfile; - unsigned directio; + unsigned sendfile:1; + unsigned directio:1; #if (NGX_HAVE_ALIGNED_DIRECTIO) - unsigned unaligned; + unsigned unaligned:1; #endif - unsigned need_in_memory; - unsigned need_in_temp; + unsigned need_in_memory:1; + unsigned need_in_temp:1; ngx_pool_t *pool; ngx_int_t allocated;