summaryrefslogtreecommitdiff
path: root/src/shutdown
diff options
context:
space:
mode:
authorValentin David <valentin.david@canonical.com>2022-12-16 13:56:14 +0100
committerValentin David <valentin.david@canonical.com>2023-01-11 15:16:07 +0100
commit3284a912cdba7855960da888da18b864817f6019 (patch)
tree6add2a29670bbcd6053d48e5341955be29a0ad3a /src/shutdown
parentc8add4c2e8e84a176b11a1ff83a2d319d1738304 (diff)
downloadsystemd-3284a912cdba7855960da888da18b864817f6019.tar.gz
shutdown: Drop bit fields in boolean declarations
Due to alignment, they did not save any space.
Diffstat (limited to 'src/shutdown')
-rw-r--r--src/shutdown/umount.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shutdown/umount.h b/src/shutdown/umount.h
index a4154c9099..6261e719b0 100644
--- a/src/shutdown/umount.h
+++ b/src/shutdown/umount.h
@@ -18,8 +18,8 @@ typedef struct MountPoint {
char *path;
char *remount_options;
unsigned long remount_flags;
- bool try_remount_ro:1;
- bool umount_lazily:1;
+ bool try_remount_ro;
+ bool umount_lazily;
dev_t devnum;
LIST_FIELDS(struct MountPoint, mount_point);
} MountPoint;