(fix) wrong var type declaration

This commit is contained in:
Ludovic Marcotte 2017-03-08 09:31:19 -05:00
parent 4ae8961947
commit 9603971c1f

View file

@ -1817,7 +1817,8 @@ inRecurrenceExceptionsForEvent: (iCalEvent *) theEvent
{
NSArray *allEvents;
iCalEvent *event;
NSUInteger i, j;
NSUInteger i;
int j;
allEvents = [rqCalendar events];