Skip to content

Commit

Permalink
hygiene, make bool statement to yield bool return type
Browse files Browse the repository at this point in the history
  • Loading branch information
hroptatyr committed May 25, 2024
1 parent 0d215b9 commit 631d3a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/evical.c
Original file line number Diff line number Diff line change
Expand Up @@ -2593,10 +2593,10 @@ mrulsp_icalify(int whither, const mrulsp_t *mr)
void
echs_prnt_ical_event(echs_task_t t, echs_event_t ev)
{
send_ical_hdr(STDOUT_FILENO, t->vtod_typ);
send_ical_hdr(STDOUT_FILENO, t->vtod_typ > VTOD_TYP_UNK);
send_ev(STDOUT_FILENO, ev, 0U);
send_task(STDOUT_FILENO, t);
send_ical_ftr(STDOUT_FILENO, t->vtod_typ);
send_ical_ftr(STDOUT_FILENO, t->vtod_typ > VTOD_TYP_UNK);
return;
}

Expand Down

0 comments on commit 631d3a2

Please sign in to comment.