Skip to content
This repository has been archived by the owner on Apr 6, 2020. It is now read-only.

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nek023 committed Apr 5, 2015
1 parent 5d9b4c7 commit 7475228
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QBImagePicker/QBAssetsViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cell

NSInteger minutes = (NSInteger)(asset.duration / 60.0);
NSInteger seconds = (NSInteger)ceil(asset.duration - 60.0 * (double)minutes);
cell.videoIndicatorView.timeLabel.text = [NSString stringWithFormat:@"%02ld:%02ld", (long)minutes, (long)seconds];;
cell.videoIndicatorView.timeLabel.text = [NSString stringWithFormat:@"%02ld:%02ld", (long)minutes, (long)seconds];
} else {
cell.videoIndicatorView.hidden = YES;
}
Expand Down

0 comments on commit 7475228

Please sign in to comment.