summaryrefslogtreecommitdiff
path: root/examples/access_components.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/access_components.c')
-rw-r--r--examples/access_components.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/access_components.c b/examples/access_components.c
index c0e3985f..0fbc3945 100644
--- a/examples/access_components.c
+++ b/examples/access_components.c
@@ -223,14 +223,14 @@ icalcomponent* create_new_component_with_va_args()
icalproperty_vanew_organizer(
"mailto:mrbig@host.com",
icalparameter_new_role(ICAL_ROLE_CHAIR),
- 0
+ NULL
),
icalproperty_vanew_attendee(
"mailto:employee-A@host.com",
icalparameter_new_role(ICAL_ROLE_REQPARTICIPANT),
icalparameter_new_rsvp(1),
icalparameter_new_cutype(ICAL_CUTYPE_GROUP),
- 0
+ NULL
),
icalproperty_new_description("Project XYZ Review Meeting"),
@@ -241,12 +241,12 @@ icalcomponent* create_new_component_with_va_args()
icalproperty_vanew_dtstart(
atime,
icalparameter_new_tzid("US-Eastern"),
- 0
+ NULL
),
icalproperty_vanew_dtend(
atime,
icalparameter_new_tzid("US-Eastern"),
- 0
+ NULL
),
icalproperty_new_location("1CP Conference Room 4350"),
0