summaryrefslogtreecommitdiff
path: root/sapi/cli/php_cli_server.c
diff options
context:
space:
mode:
Diffstat (limited to 'sapi/cli/php_cli_server.c')
-rw-r--r--sapi/cli/php_cli_server.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sapi/cli/php_cli_server.c b/sapi/cli/php_cli_server.c
index f11e1db03d..3202afe00d 100644
--- a/sapi/cli/php_cli_server.c
+++ b/sapi/cli/php_cli_server.c
@@ -160,13 +160,13 @@ typedef struct php_cli_server_client {
char *addr_str;
size_t addr_str_len;
php_http_parser parser;
- int request_read:1;
+ unsigned int request_read:1;
char *current_header_name;
size_t current_header_name_len;
- int current_header_name_allocated:1;
+ unsigned int current_header_name_allocated:1;
size_t post_read_offset;
php_cli_server_request request;
- int content_sender_initialized:1;
+ unsigned int content_sender_initialized:1;
php_cli_server_content_sender content_sender;
php_cli_server_buffer capture_buffer;
unsigned int capturing:1;