From: Lennart Poettering Date: Tue, 19 May 2015 14:03:01 +0000 (+0200) Subject: core: use bitfield where possible X-Git-Tag: v220~54 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f8a30ce524df4e2b71c2e3362e2cc83a8dcf41bf;p=thirdparty%2Fsystemd.git core: use bitfield where possible --- diff --git a/src/core/unit.h b/src/core/unit.h index e0e76e520cc..3c9a64f898e 100644 --- a/src/core/unit.h +++ b/src/core/unit.h @@ -239,7 +239,7 @@ struct Unit { bool cgroup_subtree_mask_valid:1; /* Did we already invoke unit_coldplug() for this unit? */ - bool coldplugged; + bool coldplugged:1; }; struct UnitStatusMessageFormats {