Skip to content

Commit a516836

Browse files
committed
Fix unsigned int → NSUInteger to satisfy compiler.
1 parent 06d1c64 commit a516836

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Commands/Utilities/ValueTransformers.mm

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ - (id)transformedValue:(id)value
7575
- (id)reverseTransformedValue:(id)value
7676
{
7777
NSMutableArray* array = [NSMutableArray array];
78-
unsigned int buf[[value count]];
78+
NSUInteger buf[[value count]];
7979
[(NSIndexSet*)value getIndexes:buf maxCount:[value count] inIndexRange:nil];
8080
for(unsigned int i = 0; i != [value count]; i++)
8181
[array addObject:[NSNumber numberWithUnsignedInt:buf[i]]];

0 commit comments

Comments
 (0)