Merge pull request #1350 from eikemeier/master

Fix compilation error introduced in commit 6406d8e
This commit is contained in:
Bogdan Poplauschi 2015-10-27 15:32:00 +02:00
commit f9abff8988
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@
NSInteger maxNumberOfImages = self.prefetchURLs.count;
dispatch_apply(maxNumberOfImages/self.maxConcurrentDownloads, dispatch_get_global_queue(self.prefetcherQueue, 0), ^(size_t index) {
dispatch_apply(maxNumberOfImages/self.maxConcurrentDownloads, self.prefetcherQueue, ^(size_t index) {
size_t i = index * self.maxConcurrentDownloads;
size_t stop = i + self.maxConcurrentDownloads;
do {