mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
cov: use unsigned for single bit values
Avoid using signed int.
This commit is contained in:
parent
56e4e2ce2b
commit
48d33e5fb6
@ -95,8 +95,8 @@ struct report_group_item {
|
||||
uint32_t finished_count;
|
||||
} store;
|
||||
struct report_group_item *parent;
|
||||
int output_done:1;
|
||||
int needs_closing:1;
|
||||
unsigned output_done:1;
|
||||
unsigned needs_closing:1;
|
||||
void *data;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user