summaryrefslogtreecommitdiff
path: root/check_ical.c
diff options
context:
space:
mode:
Diffstat (limited to 'check_ical.c')
-rw-r--r--check_ical.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/check_ical.c b/check_ical.c
index 6cddeb3..c0757f6 100644
--- a/check_ical.c
+++ b/check_ical.c
@@ -41,8 +41,8 @@ main(void)
printf("%02u:%02u ", dts.hour, dts.minute);
const char *sum = icalcomponent_get_summary(c);
- assert(sum);
- printf("%s\n", sum);
+ if (sum)
+ printf("%s\n", sum);
}
icalcomponent_free(comp);