mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-12 09:17:44 +03:00
network: drop unnecessary bitfield specifier
Manager is allocated only once. It is not necessary to optimize its size.
This commit is contained in:
parent
b5a80aa9d8
commit
a78f938aaf
@ -28,9 +28,9 @@ struct Manager {
|
||||
Hashmap *polkit_registry;
|
||||
int ethtool_fd;
|
||||
|
||||
bool enumerating:1;
|
||||
bool dirty:1;
|
||||
bool restarting:1;
|
||||
bool enumerating;
|
||||
bool dirty;
|
||||
bool restarting;
|
||||
bool manage_foreign_routes;
|
||||
|
||||
Set *dirty_links;
|
||||
|
Loading…
Reference in New Issue
Block a user