summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Murchison <murch@fastmail.com>2021-04-04 09:53:35 -0400
committerAllen Winter <allen.winter@kdab.com>2021-04-11 14:36:53 -0400
commit06a94947715d9cdb5894e66dee1e81567f8f19c3 (patch)
tree64189db52db435bdae907837cb974e1f48b77260
parent19d0f44205811e940c8e533ab9770d2cb88d47e2 (diff)
downloadlibical-git-06a94947715d9cdb5894e66dee1e81567f8f19c3.tar.gz
icaltz-util.c: fix alignment problem detected by clang
-rw-r--r--src/libical/icaltz-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libical/icaltz-util.c b/src/libical/icaltz-util.c
index 1660e1ad..062133ec 100644
--- a/src/libical/icaltz-util.c
+++ b/src/libical/icaltz-util.c
@@ -867,7 +867,7 @@ icalcomponent *icaltzutil_fetch_timezone(const char *location)
icalproperty_new_tzoffsetto(zone->gmtoff_to),
icalproperty_new_dtstart(zone->time),
zone->rrule_prop,
- 0);
+ (void *)0);
icalcomponent_add_component(tz_comp, zone->rrule_comp);
}
}