summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Stensgård <mastensg@mastensg.net>2025-04-18 20:16:17 +0200
committerMartin Stensgård <mastensg@mastensg.net>2025-04-18 20:16:17 +0200
commit869f48a1965382553aa6d75604bcba323ac5512a (patch)
treea5f3917bd2e719bcc00aa19f25f91eb36612826f
parentbb882015b61939eb24719f949e6e8e5dae3c32e0 (diff)
int time
-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];