@@ -396,11 +396,11 @@ forKey: (OFString*)key { void *pool; OFMutableArray *pairs; id const *lines; - size_t i, count; + size_t count; bool replaced; if ([array count] == 0) { [self removeValueForKey: key]; return; @@ -425,11 +425,11 @@ lines = [_lines objects]; count = [_lines count]; replaced = false; - for (i = 0; i < count; i++) { + for (size_t i = 0; i < count; i++) { OFINICategory_Pair *pair; if (![lines[i] isKindOfClass: [OFINICategory_Pair class]]) continue; @@ -463,13 +463,13 @@ - (void)removeValueForKey: (OFString*)key { void *pool = objc_autoreleasePoolPush(); id const *lines = [_lines objects]; - size_t i, count = [_lines count]; + size_t count = [_lines count]; - for (i = 0; i < count; i++) { + for (size_t i = 0; i < count; i++) { OFINICategory_Pair *pair; if (![lines[i] isKindOfClass: [OFINICategory_Pair class]]) continue;