From: Yu Watanabe Date: Fri, 9 Apr 2021 10:53:40 +0000 (+0900) Subject: network: drop unnecessary bitfield specifier X-Git-Tag: v249-rc1~442 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a78f938aaf14f285206cb648d6c6d80277ae3568;p=thirdparty%2Fsystemd.git network: drop unnecessary bitfield specifier Manager is allocated only once. It is not necessary to optimize its size. --- diff --git a/src/network/networkd-manager.h b/src/network/networkd-manager.h index 929855daaf1..7f630fccc7f 100644 --- a/src/network/networkd-manager.h +++ b/src/network/networkd-manager.h @@ -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;