summaryrefslogtreecommitdiff
path: root/opplysning.c
diff options
context:
space:
mode:
Diffstat (limited to 'opplysning.c')
-rw-r--r--opplysning.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/opplysning.c b/opplysning.c
index bfc0edd..05943d5 100644
--- a/opplysning.c
+++ b/opplysning.c
@@ -37,12 +37,12 @@ enum {
SIZEOF_TITLE = 256,
};
struct event {
- uint32_t year;
- uint32_t month;
- uint32_t day;
- uint32_t wday;
- uint32_t hour;
- uint32_t minute;
+ int year;
+ int month;
+ int day;
+ int wday;
+ int hour;
+ int minute;
char title[SIZEOF_TITLE];
};
struct event the_events[MAX_EVENTS];