sysupdate: drop pointless bitfields

Again, even without considering how many copies of the struct there
can be, this bitfield is useless because of alignment.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2024-02-19 12:10:34 +01:00
parent 0a35e7f6be
commit 6e2be1d97a

View file

@ -29,9 +29,9 @@ struct PartitionInfo {
sd_id128_t type, uuid;
char *label;
char *device; /* Note that this might point to some non-existing path in case we operate on a loopback file */
bool no_auto:1;
bool read_only:1;
bool growfs:1;
bool no_auto;
bool read_only;
bool growfs;
};
#define PARTITION_INFO_NULL \