(fix) wrong var type declaration

pull/234/head
Ludovic Marcotte 2017-03-08 09:31:19 -05:00
parent 4ae8961947
commit 9603971c1f
1 changed files with 2 additions and 1 deletions

View File

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