From f8a30ce524df4e2b71c2e3362e2cc83a8dcf41bf Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 19 May 2015 16:03:01 +0200 Subject: core: use bitfield where possible --- src/core/unit.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core') diff --git a/src/core/unit.h b/src/core/unit.h index e0e76e520c..3c9a64f898 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 { -- cgit v1.2.3-54-g00ecf