Skip to content

Commit

Permalink
icalrecur.c: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ksmurchison committed Sep 24, 2015
1 parent d2fb66d commit fe33ca6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libical/icalrecur.c
Original file line number Diff line number Diff line change
Expand Up @@ -1609,7 +1609,7 @@ static int get_day_of_year(icalrecur_iterator *impl,
if (!day) {
day = impl->dtstart.day;
}
else if (abs(day > days_in_month)) {
else if (abs(day) > days_in_month) {
/* Skip bogus days */
if (dow) {
*dow = 0;
Expand Down

0 comments on commit fe33ca6

Please sign in to comment.