aboutsummaryrefslogtreecommitdiffstats
path: root/src/day.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/day.c')
-rw-r--r--src/day.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/day.c b/src/day.c
index 19b4f88..3e8adbf 100644
--- a/src/day.c
+++ b/src/day.c
@@ -433,8 +433,7 @@ day_display_item(struct day_item *day, WINDOW *win, int incolor, int width,
char *mesg = day_item_get_mesg(day);
- ch_recur = (day->type == RECUR_EVNT
- || day->type == RECUR_APPT) ? '*' : ' ';
+ ch_recur = (day->type == RECUR_EVNT) ? '*' : ' ';
ch_note = day_item_get_note(day) ? '>' : ' ';
strncpy(buf, mesg, width * UTF8_MAXLEN);