From 3284a912cdba7855960da888da18b864817f6019 Mon Sep 17 00:00:00 2001 From: Valentin David Date: Fri, 16 Dec 2022 13:56:14 +0100 Subject: [PATCH] shutdown: Drop bit fields in boolean declarations Due to alignment, they did not save any space. --- src/shutdown/umount.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shutdown/umount.h b/src/shutdown/umount.h index a4154c9099f..6261e719b0c 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; -- 2.47.3