mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
coverity: avoid using signed types for single bits
This commit is contained in:
parent
412f09ca33
commit
0bf5518626
@ -94,8 +94,8 @@ struct historical_logical_volume {
|
|||||||
uint64_t timestamp_removed;
|
uint64_t timestamp_removed;
|
||||||
struct generic_logical_volume *indirect_origin;
|
struct generic_logical_volume *indirect_origin;
|
||||||
struct dm_list indirect_glvs; /* list of struct generic_logical_volume */
|
struct dm_list indirect_glvs; /* list of struct generic_logical_volume */
|
||||||
int checked:1; /* set if this historical LV has been checked for validity */
|
unsigned checked:1; /* set if this historical LV has been checked for validity */
|
||||||
int valid:1; /* historical LV is valid if there's at least one live LV among ancestors */
|
unsigned valid:1; /* historical LV is valid if there's at least one live LV among ancestors */
|
||||||
};
|
};
|
||||||
|
|
||||||
struct generic_logical_volume {
|
struct generic_logical_volume {
|
||||||
|
Loading…
Reference in New Issue
Block a user