From: Valentin David Date: Fri, 16 Dec 2022 12:56:14 +0000 (+0100) Subject: shutdown: Drop bit fields in boolean declarations X-Git-Tag: v253-rc1~30^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3284a912cdba7855960da888da18b864817f6019;p=thirdparty%2Fsystemd.git shutdown: Drop bit fields in boolean declarations Due to alignment, they did not save any space. --- 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;