diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-05-19 16:03:01 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-05-19 16:03:01 +0200 |
commit | f8a30ce524df4e2b71c2e3362e2cc83a8dcf41bf (patch) | |
tree | 53158dc825211f0c04dcdc35132cc5acc350e057 /src/core/unit.h | |
parent | 6b83b5e8d4502b459f209b91f130bf0a226adbf8 (diff) |
core: use bitfield where possible
Diffstat (limited to 'src/core/unit.h')
-rw-r--r-- | src/core/unit.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |