Skip to content

Commit bb19b4c

Browse files
committed
Silence sign comparison warning.
1 parent c5f37b9 commit bb19b4c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

FsprgEmbeddedStore/FsprgEmbeddedStoreController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ - (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallen
386386

387387
NSMutableArray *certificates = [NSMutableArray arrayWithCapacity:count];
388388
CFIndex idx;
389-
for (idx = 0; idx < count; idx++) {
389+
for (idx = 0; idx < (CFIndex)count; idx++) {
390390
SecCertificateRef certificateRef = SecTrustGetCertificateAtIndex(trustRef, idx);
391391
[certificates addObject:(id)certificateRef];
392392
}

0 commit comments

Comments
 (0)