1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-10-27 01:55:32 +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:
Yu Watanabe 2021-04-09 19:53:40 +09:00 committed by Luca Boccassi
parent b5a80aa9d8
commit a78f938aaf

View File

@ -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;