Skip to content

Commit 3b17c02

Browse files
committed
Fixed warning running on 64-bit platforms
1 parent 86fff7b commit 3b17c02

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Demo/RAMCollectionViewFlemishBondLayoutDemo/RAMCollectionViewFlemishBondLayoutDemo/RAMCollectionViewCell.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ - (void)setupLabel
4545
#pragma mark - Configure
4646
- (void)configureCellWithIndexPath:(NSIndexPath *)indexPath
4747
{
48-
self.label.text = [NSString stringWithFormat:@"Cell %i", (indexPath.row + 1)];
48+
self.label.text = [NSString stringWithFormat:@"Cell %ld", (long)(indexPath.row + 1)];
4949
}
5050

5151
@end

0 commit comments

Comments
 (0)