From: Zbigniew Jędrzejewski-Szmek Date: Tue, 9 Feb 2021 16:02:18 +0000 (+0100) Subject: sd-event: drop one bitfield from sd_event_source X-Git-Tag: v248-rc1~166^2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=755c6d5923e11b71b465ca29095adf050fb73787;p=thirdparty%2Fsystemd.git sd-event: drop one bitfield from sd_event_source pahole analysis confirms that the structure size does not change (there was/is a hole after the sequence of bitfields anyway). --- diff --git a/src/libsystemd/sd-event/event-source.h b/src/libsystemd/sd-event/event-source.h index f0d2a1b9e6d..9f6a8d5e161 100644 --- a/src/libsystemd/sd-event/event-source.h +++ b/src/libsystemd/sd-event/event-source.h @@ -56,7 +56,7 @@ struct sd_event_source { char *description; - EventSourceType type:5; + EventSourceType type; signed int enabled:3; bool pending:1; bool dispatching:1;