day_item_add_exc(): Fix unwanted fall-through

Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
This commit is contained in:
Lukas Fleischer 2014-05-18 11:13:57 +02:00
parent 2a62351d25
commit 411b8078b9

View File

@ -174,8 +174,10 @@ void day_item_add_exc(struct day_item *day, long date)
switch (day->type) {
case RECUR_EVNT:
recur_event_add_exc(day->item.rev, date);
break;
case RECUR_APPT:
recur_apoint_add_exc(day->item.rapt, date);
break;
}
}