File tree 2 files changed +6
-6
lines changed 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -485,9 +485,9 @@ typedef struct _phar_entry_data {
485
485
off_t position ;
486
486
/* for copies of the phar fp, defines where 0 is */
487
487
off_t zero ;
488
- int for_write :1 ;
489
- int is_zip :1 ;
490
- int is_tar :1 ;
488
+ unsigned int for_write :1 ;
489
+ unsigned int is_zip :1 ;
490
+ unsigned int is_tar :1 ;
491
491
phar_entry_info * internal_file ;
492
492
} phar_entry_data ;
493
493
Original file line number Diff line number Diff line change @@ -160,13 +160,13 @@ typedef struct php_cli_server_client {
160
160
char * addr_str ;
161
161
size_t addr_str_len ;
162
162
php_http_parser parser ;
163
- int request_read :1 ;
163
+ unsigned int request_read :1 ;
164
164
char * current_header_name ;
165
165
size_t current_header_name_len ;
166
- int current_header_name_allocated :1 ;
166
+ unsigned int current_header_name_allocated :1 ;
167
167
size_t post_read_offset ;
168
168
php_cli_server_request request ;
169
- int content_sender_initialized :1 ;
169
+ unsigned int content_sender_initialized :1 ;
170
170
php_cli_server_content_sender content_sender ;
171
171
php_cli_server_buffer capture_buffer ;
172
172
unsigned int capturing :1 ;
You can’t perform that action at this time.
0 commit comments