summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/shared/calendarspec.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/shared/calendarspec.h b/src/shared/calendarspec.h
index 3bf8a39e1a..0a5d95b4b1 100644
--- a/src/shared/calendarspec.h
+++ b/src/shared/calendarspec.h
@@ -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;