From c0dc565cf9e6709a671fbfee0d43a7bc2fab94ba Mon Sep 17 00:00:00 2001 From: Andrej Kacian Date: Tue, 13 Sep 2016 11:45:22 +0200 Subject: [PATCH] More fixes for vcalendar crash on 64-bit arch. Same issue as in commit d20742e, different place. This should be the last one, though. --- src/plugins/vcalendar/vcal_manager.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/vcalendar/vcal_manager.c b/src/plugins/vcalendar/vcal_manager.c index 017aa8c44..b22947cd5 100644 --- a/src/plugins/vcalendar/vcal_manager.c +++ b/src/plugins/vcalendar/vcal_manager.c @@ -448,7 +448,7 @@ gchar *vcal_manager_event_dump(VCalEvent *event, gboolean is_reply, gboolean is_ ICAL_ROLE_REQPARTICIPANT), icalparameter_new_rsvp(ICAL_RSVP_TRUE), icalparameter_new_partstat(status), - 0 + (void*)0 ); icalcomponent_add_property(ievent, attprop); } else { @@ -470,7 +470,7 @@ gchar *vcal_manager_event_dump(VCalEvent *event, gboolean is_reply, gboolean is_ icalparameter_new_rsvp(ICAL_RSVP_TRUE), icalparameter_new_cutype(a->cutype), icalparameter_new_partstat(a->answer), - 0 + (void*)0 ); icalcomponent_add_property(ievent, attprop); -- 2.25.1