calendarspec: pack our flags a bit

This commit is contained in:
Lennart Poettering 2020-04-30 13:18:58 +02:00
parent a4d6d711cf
commit 80b19994a4

View file

@ -19,9 +19,9 @@ typedef struct CalendarComponent {
typedef struct CalendarSpec {
int weekdays_bits;
bool end_of_month;
bool utc;
int dst;
bool end_of_month:1;
bool utc:1;
signed int dst:2;
char *timezone;
CalendarComponent *year;