diff options
Diffstat (limited to 'src/nxt_http_static.c')
-rw-r--r-- | src/nxt_http_static.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nxt_http_static.c b/src/nxt_http_static.c index 5e44aab4..f923f82c 100644 --- a/src/nxt_http_static.c +++ b/src/nxt_http_static.c @@ -12,7 +12,7 @@ typedef struct { #if (NXT_HAVE_OPENAT2) u_char *fname; #endif - uint8_t is_const; /* 1 bit */ + nxt_bool_t is_const; } nxt_http_static_share_t; @@ -35,7 +35,7 @@ typedef struct { nxt_str_t chroot; #endif uint32_t share_idx; - uint8_t need_body; /* 1 bit */ + nxt_bool_t need_body; } nxt_http_static_ctx_t; |