From 4f73005d1de693873aac3ac05779d752bfbdf517 Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Wed, 8 Mar 2017 09:31:19 -0500 Subject: [PATCH] (fix) wrong var type declaration --- SoObjects/Appointments/SOGoAppointmentObject.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SoObjects/Appointments/SOGoAppointmentObject.m b/SoObjects/Appointments/SOGoAppointmentObject.m index dd99ea956..23a70d10f 100644 --- a/SoObjects/Appointments/SOGoAppointmentObject.m +++ b/SoObjects/Appointments/SOGoAppointmentObject.m @@ -1775,7 +1775,8 @@ inRecurrenceExceptionsForEvent: (iCalEvent *) theEvent { NSArray *allEvents; iCalEvent *event; - NSUInteger i, j; + NSUInteger i; + int j; allEvents = [rqCalendar events];