aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPArrayAdditions.m
diff options
context:
space:
mode:
Diffstat (limited to 'Source/SPArrayAdditions.m')
-rw-r--r--Source/SPArrayAdditions.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPArrayAdditions.m b/Source/SPArrayAdditions.m
index bce26872..e19869fa 100644
--- a/Source/SPArrayAdditions.m
+++ b/Source/SPArrayAdditions.m
@@ -60,9 +60,9 @@
- (NSArray *)subarrayWithIndexes:(NSIndexSet *)indexes
{
NSMutableArray *subArray = [NSMutableArray arrayWithCapacity:[indexes count]];
- unsigned count = [self count];
+ NSUInteger count = [self count];
- unsigned index = [indexes firstIndex];
+ NSUInteger index = [indexes firstIndex];
while ( index != NSNotFound )
{
if ( index < count )